[Bug] prevent iOS input-auto zoom by adding font-size: 16px to inputs (#2137)

This commit is contained in:
flx-sta 2024-06-12 10:11:30 -07:00 committed by GitHub
parent 4139e11b11
commit ed495673f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;
}