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 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-30 10:42:04 +00:00
parent d6f5127cd6
commit 623a0da056
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -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) {
+2
View File
@@ -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) {