From c80bf99b913ee17fc8a01ac78c3cc29309d6f608 Mon Sep 17 00:00:00 2001 From: Smittix Date: Mon, 16 Feb 2026 22:22:15 +0000 Subject: [PATCH] fix: Raise nav bar z-index so Space dropdown isn't clipped by content The mode-nav dropdown menus were being visually covered by the main content area (maps, visuals) below. Increase z-index from 100 to 1100 so dropdown menus render above all page content. Co-Authored-By: Claude Opus 4.6 --- static/css/global-nav.css | 2 +- static/css/index.css | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/static/css/global-nav.css b/static/css/global-nav.css index 84e2bb8..c3951e5 100644 --- a/static/css/global-nav.css +++ b/static/css/global-nav.css @@ -30,7 +30,7 @@ border-bottom: 1px solid var(--border-color, #202833); padding: 0 20px; position: relative; - z-index: 100; + z-index: 1100; backdrop-filter: blur(10px); } diff --git a/static/css/index.css b/static/css/index.css index 60498a5..413ffee 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -706,6 +706,8 @@ header h1 { background: var(--bg-tertiary); border-bottom: 1px solid var(--border-color); padding: 0 20px; + position: relative; + z-index: 1100; } @media (min-width: 1024px) {