fix: Force navbar background color with !important

Using !important to ensure the navbar background color (#151a23)
cannot be overridden by any cascade or specificity issues.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-01-30 10:29:16 +00:00
parent eeca15c83e
commit 166963f2a1
2 changed files with 2 additions and 4 deletions
+1 -2
View File
@@ -589,8 +589,7 @@
/* Mode Navigation Bar */
.mode-nav {
display: none;
background: #151a23; /* Explicit color to ensure consistency across all pages */
background: var(--bg-tertiary, #151a23);
background: #151a23 !important; /* Explicit color - forced to ensure consistency */
border-bottom: 1px solid var(--border-color);
padding: 0 20px;
}
+1 -2
View File
@@ -640,8 +640,7 @@ header h1 {
/* Mode Navigation Bar */
.mode-nav {
display: none;
background: #151a23; /* Explicit color for consistency */
background: var(--bg-tertiary, #151a23);
background: #151a23 !important; /* Explicit color - forced to ensure consistency */
border-bottom: 1px solid var(--border-color);
padding: 0 20px;
}