diff --git a/server/public/home.html b/server/public/home.html index 1133c2d..c81aaeb 100644 --- a/server/public/home.html +++ b/server/public/home.html @@ -1028,7 +1028,7 @@ That zoom scales & offsets the visual viewport (vvW 428→394, vvTop→74 in the device report), which scrambled every keyboard/safe-area calculation. Forcing 16px on all form fields stops the zoom, so the keyboard behaves predictably and the composer sits correctly. This is THE keyboard root cause. */ - input,textarea,select{font-size:16px;} + input,textarea,select{font-size:16px !important;} /* !important: beats .composer-row textarea{.92rem} etc. — any <16px focus re-triggers the iOS zoom */ /* #3: kill any horizontal drift on phones (long content, over-wide children, safe-area math) — the page must never pan left/right. Clip every scroll surface and let long words/URLs wrap. */ html,body{overflow-x:hidden;} @@ -1117,7 +1117,7 @@
-