Adjust background color for mobile navigation menu

This commit is contained in:
2025-09-13 15:51:35 -07:00
parent a08422d51e
commit e4aa7a2a43
3 changed files with 6 additions and 3 deletions

3
assets/css/colors.css Normal file
View File

@@ -0,0 +1,3 @@
:root {
--background-color: #f4f4f4;
}

View File

@@ -1,8 +1,9 @@
@import url('fonts.css'); @import url('fonts.css');
@import url('navigation.css'); @import url('navigation.css');
@import url('colors.css');
html { html {
background-color: #f4f4f4; background-color: var(--background-color);
} }
body { body {

View File

@@ -90,9 +90,8 @@
left: -100%; left: -100%;
top: 80px; top: 80px;
flex-direction: column; flex-direction: column;
background-color: white; background-color: var(--background-color);
width: 100%; width: 100%;
box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
z-index: 1000; z-index: 1000;
gap: 0; gap: 0;
} }