From 2c79448d8dcd4582646b3b105dc8cafb3a27b36a Mon Sep 17 00:00:00 2001 From: PRAteek-singHWY Date: Sat, 28 Feb 2026 04:03:32 +0530 Subject: [PATCH] fix(frontend): scope overscroll handling without global dark background --- application/frontend/src/app.scss | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/application/frontend/src/app.scss b/application/frontend/src/app.scss index 6208298a..4b0fb3c6 100644 --- a/application/frontend/src/app.scss +++ b/application/frontend/src/app.scss @@ -9,21 +9,27 @@ body { width: 100%; margin: 0; padding: 0; + overscroll-behavior-y: none; } html { text-size-adjust: 100%; + background-color: white; } body { - background-color: #010817; + background-color: white; + overflow: hidden; } #mount { - height: 100vh; - width: 100vw; + height: 100%; + width: 100%; + overflow-y: auto; + overflow-x: hidden; + overscroll-behavior-y: none; } .app { - height: 100%; + min-height: 100%; }