This commit is contained in:
2025-05-13 11:49:16 -07:00
parent a2b40c867c
commit 627843c23c
3 changed files with 31 additions and 1 deletions

View File

@@ -10,6 +10,24 @@
display: flex;
justify-content: space-between;
}
#mobile-nav-toggle {
svg:first-of-type {
display: block;
}
svg:last-of-type {
display: none;
}
.mobile-nav-open {
svg:first-of-type {
display: none;
}
svg:last-of-type {
display: block;
}
}
}
}
nav.main-nav {