Prevent iOS input zoom

This commit is contained in:
Michael Shamoon 2020-12-26 21:16:12 -08:00
parent 99b5e25731
commit 5e5059b2e7

View File

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