Prevent iOS input zoom

This commit is contained in:
Michael Shamoon 2020-12-26 21:16:12 -08:00
parent b6f338eb52
commit 972d5b5616

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