From 9f2e98376e861b9a20da695dbf1e4acaec5c96c3 Mon Sep 17 00:00:00 2001 From: chihlasm Date: Tue, 17 Feb 2026 20:21:49 -0500 Subject: [PATCH] fix: ensure procedural runtime panes are scrollable in app shell --- frontend/src/index.css | 3 +++ frontend/src/pages/ProceduralNavigationPage.tsx | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/src/index.css b/frontend/src/index.css index 588541a8..4cc2cfc4 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -88,10 +88,13 @@ } .sidebar { + min-height: 0; overflow-y: auto; } .main-content { + min-height: 0; + min-width: 0; overflow-y: auto; } diff --git a/frontend/src/pages/ProceduralNavigationPage.tsx b/frontend/src/pages/ProceduralNavigationPage.tsx index a6b100b4..f153b52c 100644 --- a/frontend/src/pages/ProceduralNavigationPage.tsx +++ b/frontend/src/pages/ProceduralNavigationPage.tsx @@ -340,7 +340,7 @@ export function ProceduralNavigationPage() { const currentStepState = currentStep ? stepStates.get(currentStep.id) : undefined return ( -
+
{/* Top bar */}
@@ -366,7 +366,7 @@ export function ProceduralNavigationPage() {
{/* Main content */} -
+
{/* Left sidebar - step checklist */}
{/* Right panel - step detail */} -
+
{currentStep && (