Set sidebar to max when on mobile

This commit is contained in:
Joshua Goins 2022-09-14 17:13:15 -04:00
parent b2b83f062b
commit 5e0c44120d

View file

@ -6,6 +6,10 @@
"nav main" "nav main"
"nav foot"; "nav foot";
} }
aside {
width: 250px;
}
} }
/* mobile devices */ /* mobile devices */
@ -17,6 +21,10 @@
"main" "main"
"foot"; "foot";
} }
aside {
width: 100%;
}
} }
body { body {
@ -35,8 +43,6 @@ header {
aside { aside {
background-color: white; background-color: white;
width: 250px;
grid-area: nav; grid-area: nav;
} }