Fix iOS input auto-zoom (fixes #49, thanks @xpcmdshell)

This commit is contained in:
Shantur Rathore
2026-01-06 18:50:55 +00:00
parent 25bf313338
commit eb89dfaf89

View File

@@ -133,3 +133,12 @@
.kbd-separator {
@apply opacity-50;
}
/* Prevent iOS Safari auto-zoom on text input focus */
@media (pointer: coarse) {
input[type="text"],
input:not([type]),
textarea {
font-size: 16px !important;
}
}