From 62408182a05714eb5bee38f371c3f5fa50b1f501 Mon Sep 17 00:00:00 2001 From: ARCHITECT Date: Wed, 14 Jan 2026 00:19:34 +0000 Subject: [PATCH] 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 --- deck-frontend/src/styles/main.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deck-frontend/src/styles/main.css b/deck-frontend/src/styles/main.css index 712dd25..ab2b0d3 100644 --- a/deck-frontend/src/styles/main.css +++ b/deck-frontend/src/styles/main.css @@ -223,6 +223,7 @@ body { /* === CONTENT AREA === */ .content-area { flex: 1; overflow: hidden; position: relative; } +.content-area.graph-view { overflow: visible; } /* === GRID VIEW === */ .grid-view { @@ -399,6 +400,7 @@ body { width: 100%; height: 100%; position: relative; + overflow: visible !important; } .graph-view svg { width: 100%; height: 100%; display: block; background: var(--bg); } .node { cursor: pointer; }