From d2280420ead3762962576e6b889a7715339e8778 Mon Sep 17 00:00:00 2001 From: Jukka Lampikoski Date: Thu, 12 Mar 2026 17:24:58 +0200 Subject: [PATCH] Fix mobile form overflow on saatavuus section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add width: 100% to availability check inputs - Reduce form padding on mobile (32px → 20px, 24px → 16px) - Add overflow-x: hidden to body Co-Authored-By: Claude Opus 4.6 --- style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/style.css b/style.css index 29e1a6b..4580dfd 100644 --- a/style.css +++ b/style.css @@ -24,6 +24,7 @@ body { color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; + overflow-x: hidden; } .container { @@ -602,6 +603,7 @@ img { } .availability-check-fields input { + width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; @@ -785,6 +787,14 @@ img { gap: 32px; } + .form { + padding: 20px; + } + + .availability-check { + padding: 16px; + } + .form-row { grid-template-columns: 1fr; }