This commit is contained in:
Jon McClure 2023-06-10 20:53:25 +01:00
parent dd3dfa71f6
commit 7125f26feb

View file

@ -24,13 +24,17 @@ body {
You may also want to override the background on the header nav if it conflicts with your background, especially the dropdown menu:
```css
// global.scss
// Main nav container
/* global.scss
Main nav container */
.nav-container .inner {
background: darkblue !important;
// Dropdown menu
/* Dropdown menu */
.dropdown {
background: darkblue !important;
}
}
/* Mobile nav overlay */
header + .overlay {
background: darkblue !important;
}
```