Fixed: Don't auto zoom when focusing inputs on mobile devices, namely iOS

pull/2900/head
Mark McDowall 6 years ago
parent e10c92878d
commit c417239652

@ -43,3 +43,12 @@ ul {
margin: 0;
padding-left: 20px;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) {
input,
optgroup,
select,
textarea {
font-size: 16px;
}
}

@ -158,6 +158,12 @@
.hidden {
display: none;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) {
.form-input {
font-size: 16px;
}
}
</style>
</head>

Loading…
Cancel
Save