From 623a0da056164f298cff3dec32bcf8e714e013ea Mon Sep 17 00:00:00 2001 From: Smittix Date: Fri, 30 Jan 2026 10:42:04 +0000 Subject: [PATCH] fix: Add z-index to navbar to sit above radar grid overlay Dashboard pages have a .radar-bg element with a grid pattern that was showing through the navbar. Adding position: relative and z-index: 10 ensures the nav appears above the background effects. Co-Authored-By: Claude Opus 4.5 --- static/css/core/layout.css | 2 ++ static/css/index.css | 2 ++ 2 files changed, 4 insertions(+) diff --git a/static/css/core/layout.css b/static/css/core/layout.css index 97c12cc..a2a9845 100644 --- a/static/css/core/layout.css +++ b/static/css/core/layout.css @@ -592,6 +592,8 @@ background: #151a23 !important; /* Explicit color - forced to ensure consistency */ border-bottom: 1px solid var(--border-color); padding: 0 20px; + position: relative; + z-index: 10; } @media (min-width: 1024px) { diff --git a/static/css/index.css b/static/css/index.css index d2b243a..7268081 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -643,6 +643,8 @@ header h1 { background: #151a23 !important; /* Explicit color - forced to ensure consistency */ border-bottom: 1px solid var(--border-color); padding: 0 20px; + position: relative; + z-index: 10; } @media (min-width: 1024px) {