fix(codebase): constrain layout to 100vh so left and right panes scroll internally instead of the window

This commit is contained in:
2026-06-14 13:29:21 -07:00
parent db7814782c
commit 3a884fe28d

View File

@@ -382,6 +382,8 @@ const grid: React.CSSProperties = {
display: "grid",
gridTemplateColumns: "300px minmax(0, 1fr)",
alignItems: "stretch",
flex: 1,
minHeight: 0,
};
const leftCol: React.CSSProperties = {
@@ -391,6 +393,7 @@ const leftCol: React.CSSProperties = {
gap: 24,
borderRight: `1px solid ${THEME.borderSoft}`,
padding: "20px",
overflowY: "auto",
};
const rightCol: React.CSSProperties = {