From 3b9459cf108797e491342262bc33d01645947e81 Mon Sep 17 00:00:00 2001 From: Ulas Date: Sun, 5 Apr 2026 01:52:51 +0200 Subject: [PATCH] fix(layout): fix touch scroll by using height instead of min-height on app-shell min-height: 100dvh lets the shell grow unbounded, so app-content never overflows and touch scroll has nothing to scroll. height: 100dvh constrains the shell to exactly the viewport, making overflow-y: auto on app-content work. --- public/styles/layout.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/styles/layout.css b/public/styles/layout.css index b9d2d48..0c37f10 100644 --- a/public/styles/layout.css +++ b/public/styles/layout.css @@ -17,7 +17,7 @@ .app-shell { display: flex; flex-direction: column; - min-height: 100dvh; + height: 100dvh; } /* --------------------------------------------------------