From 08c764039ddc3d541199ce90697b17c155cc3bad Mon Sep 17 00:00:00 2001 From: Dan Tacci Date: Thu, 19 Jun 2025 17:32:50 -0700 Subject: [PATCH] Fix homepage scrolling issue (AD-12) - Changed main-content overflow from hidden to auto to enable vertical scrolling - Updated component-view to use flex: 1 and overflow-y: auto for proper scrolling behavior - Ensures homepage content can be scrolled when it exceeds viewport height --- src/styles/App.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/styles/App.css b/src/styles/App.css index c47bb58..9b8bafe 100644 --- a/src/styles/App.css +++ b/src/styles/App.css @@ -298,17 +298,17 @@ body { .main-content { flex: 1; background-color: var(--storybook-bg); - overflow: hidden; + overflow-y: auto; display: flex; flex-direction: column; } /* Component View */ .component-view { - height: 100%; + flex: 1; display: flex; flex-direction: column; - overflow: hidden; + overflow-y: auto; } .component-header {