From 2315b90bdb158d64a7db4fd53a7d50cdb17846fe Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 25 Feb 2026 12:44:24 +0100 Subject: [PATCH] Remove nested scroll container (single browser scrollbar) --- app/globals.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/app/globals.css b/app/globals.css index dce3e7f..f83f7ee 100644 --- a/app/globals.css +++ b/app/globals.css @@ -4,6 +4,8 @@ @tailwind components; @tailwind utilities; + + /* ------------------------------------------------ */ /* Base Typography & Rendering Improvements */ /* ------------------------------------------------ */ @@ -104,3 +106,24 @@ html, body { mix-blend-mode: soft-light; background-image: url("/noise.png"); } + +/* --- Force single (browser) scrollbar only --- */ +html, +body { + height: auto !important; + min-height: 100% !important; + overflow-y: auto !important; +} + +body { + overflow-x: hidden !important; +} + +/* Kill any accidental nested scroll containers */ +#__next, +main, +[data-scroll-container="true"] { + overflow: visible !important; + height: auto !important; + max-height: none !important; +} \ No newline at end of file