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 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-02-16 22:22:15 +00:00
parent 6e5cb0a23e
commit c80bf99b91
2 changed files with 3 additions and 1 deletions

View File

@@ -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);
}

View File

@@ -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) {