From ed495673f3f5eda023c5d27be7f0dabb54e5befd Mon Sep 17 00:00:00 2001 From: flx-sta <50131232+flx-sta@users.noreply.github.com> Date: Wed, 12 Jun 2024 10:11:30 -0700 Subject: [PATCH] [Bug] prevent iOS input-auto zoom by adding font-size: 16px to inputs (#2137) --- index.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.css b/index.css index 1b2f0211692..36ab3e2ea87 100644 --- a/index.css +++ b/index.css @@ -243,4 +243,8 @@ input:-internal-autofill-selected { -webkit-animation: blink normal 4s infinite ease-in-out; /* Webkit */ -ms-animation: blink normal 4s infinite ease-in-out; /* IE */ animation: blink normal 4s infinite ease-in-out; /* Opera and prob css3 final iteration */ +} + +input { + font-size: 16px; } \ No newline at end of file