Fix graph sidebar visibility with overflow visible

- Add overflow: visible to .graph-view to prevent clipping
- Add .content-area.graph-view rule for parent overflow fix

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
ARCHITECT
2026-01-14 00:19:34 +00:00
parent 6d6e4e1bdf
commit 62408182a0

View File

@@ -223,6 +223,7 @@ body {
/* === CONTENT AREA === */ /* === CONTENT AREA === */
.content-area { flex: 1; overflow: hidden; position: relative; } .content-area { flex: 1; overflow: hidden; position: relative; }
.content-area.graph-view { overflow: visible; }
/* === GRID VIEW === */ /* === GRID VIEW === */
.grid-view { .grid-view {
@@ -399,6 +400,7 @@ body {
width: 100%; width: 100%;
height: 100%; height: 100%;
position: relative; position: relative;
overflow: visible !important;
} }
.graph-view svg { width: 100%; height: 100%; display: block; background: var(--bg); } .graph-view svg { width: 100%; height: 100%; display: block; background: var(--bg); }
.node { cursor: pointer; } .node { cursor: pointer; }