Ensure mobile inputs use 16px font

This commit is contained in:
Dhravya Shah 2026-05-16 20:30:24 -07:00
parent 2fe01a5290
commit 0c19cf5969

View file

@ -260,4 +260,17 @@
font-size: 14px;
letter-spacing: var(--tracking-normal);
}
@media (max-width: 767px) {
input:not([type="button"]):not([type="checkbox"]):not([type="color"]):not(
[type="file"]
):not([type="hidden"]):not([type="image"]):not([type="radio"]):not(
[type="range"]
):not([type="reset"]):not([type="submit"]),
textarea,
select,
[contenteditable]:not([contenteditable="false"]) {
font-size: 16px !important;
}
}
}