From d203e34dfe2c4247900e7bbddfd7e9369ef444b1 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Wed, 25 Jun 2025 03:53:07 +0200 Subject: [PATCH] reduce padding --- web/src/client/styles.css | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/web/src/client/styles.css b/web/src/client/styles.css index d7e32b16..24e330c5 100644 --- a/web/src/client/styles.css +++ b/web/src/client/styles.css @@ -168,12 +168,11 @@ @media (max-width: 768px) { .auth-container { - @apply py-8; /* Add vertical padding on mobile */ + @apply py-4; /* Reduced vertical padding on mobile */ min-height: 100vh; min-height: 100dvh; - /* Allow natural scrolling if content exceeds viewport */ - overflow-y: auto; - -webkit-overflow-scrolling: touch; + /* Prevent scrolling - content should fit */ + overflow: hidden; } }