From 5e5059b2e77f684aae3bd4c84c4699824f766161 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Sat, 26 Dec 2020 21:16:12 -0800 Subject: [PATCH] Prevent iOS input zoom --- src-ui/src/styles.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src-ui/src/styles.scss b/src-ui/src/styles.scss index 6e09db630..7e9a9377a 100644 --- a/src-ui/src/styles.scss +++ b/src-ui/src/styles.scss @@ -100,3 +100,13 @@ body { padding-top: 1px; } } + +@supports (-webkit-touch-callout: none) { + input[type="number"], + input[type="search"], + input[type="text"], + select:focus, + textarea { + font-size: 16px; + } +}