fix(frontend): prevent iOS Safari auto-zoom on input focus

This commit is contained in:
2026-05-29 01:10:50 +02:00
parent 2199e5c66d
commit 9849bb4991

View File

@@ -189,6 +189,11 @@
@apply bg-background text-foreground; @apply bg-background text-foreground;
} }
/* Prevent iOS Safari auto-zoom on input focus (triggered when font-size < 16px) */
input, select, textarea {
font-size: max(16px, 1em);
}
.glossy-effect::before { .glossy-effect::before {
content: ""; content: "";
position: absolute; position: absolute;