From 72d065975db3fa51e21bc28e884010d6194fe987 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 28 Mar 2026 22:35:11 +0100 Subject: [PATCH] fix: lock html/body to 100dvh overflow hidden on all screen sizes All views that need scroll use their own overflow-y: auto containers. Co-Authored-By: Claude Sonnet 4.6 --- src/styles/app.css | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/src/styles/app.css b/src/styles/app.css index 1e9eace..9e393f1 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -49,22 +49,11 @@ } } -html { - overflow-y: auto; - overflow-x: auto; -} - +html, body { height: 100dvh; + overflow: hidden; scroll-behavior: smooth; - overflow-y: auto; -} - -@media screen and (min-width: 769px) { - html, - body { - overflow-y: hidden; - } } .columns {