From 35204ee400c76caf80a1c49a8e722019e9fd54c9 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 22:13:47 +0200 Subject: [PATCH] fix: force document scroll with !important overrides - Add explicit overflow: visible to main pane - Add height: auto to main pane - Ensure three-pane container doesn't constrain height - Force styles to override any inherited overflow --- src/styles/layout/app.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/styles/layout/app.css b/src/styles/layout/app.css index 4d5d5092..743efc6c 100644 --- a/src/styles/layout/app.css +++ b/src/styles/layout/app.css @@ -26,6 +26,9 @@ transition: grid-template-columns 0.3s ease; position: relative; min-height: 100vh; + height: auto !important; + max-height: none !important; + overflow: visible !important; } .three-pane.sidebar-collapsed { grid-template-columns: var(--sidebar-collapsed-width) 1fr var(--highlights-width); } @@ -46,6 +49,8 @@ margin: 0 auto; padding: 0 var(--main-horizontal-padding); min-height: 100vh; + overflow: visible !important; + height: auto !important; } .pane.highlights {