From 9849bb49916b1e90dffd7a2e137d709acd57886e Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Fri, 29 May 2026 01:10:50 +0200 Subject: [PATCH] fix(frontend): prevent iOS Safari auto-zoom on input focus --- thoughts-frontend/app/globals.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/thoughts-frontend/app/globals.css b/thoughts-frontend/app/globals.css index 22c5135..8d76cf8 100644 --- a/thoughts-frontend/app/globals.css +++ b/thoughts-frontend/app/globals.css @@ -189,6 +189,11 @@ @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 { content: ""; position: absolute;