fix: make content wrapper a flex column so child pages can scroll

Made-with: Cursor
This commit is contained in:
2026-03-17 16:40:24 -07:00
parent f47205c473
commit f1b4622043

View File

@@ -139,7 +139,7 @@ function ProjectShellInner({
</header> </header>
{/* ── Full-width content ── */} {/* ── Full-width content ── */}
<div style={{ flex: 1, overflow: "hidden" }}> <div style={{ flex: 1, overflow: "hidden", display: "flex", flexDirection: "column" }}>
{children} {children}
</div> </div>
</div> </div>