mirror of
https://github.com/smittix/intercept.git
synced 2026-06-08 22:21:55 -07:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user