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

12
dist/app.css vendored
View File

@@ -12106,6 +12106,18 @@ a {
justify-content: space-between;
}
}
.top-nav .logo-wrapper #mobile-nav-toggle svg:first-of-type {
display: block;
}
.top-nav .logo-wrapper #mobile-nav-toggle svg:last-of-type {
display: none;
}
.top-nav .logo-wrapper #mobile-nav-toggle .mobile-nav-open svg:first-of-type {
display: none;
}
.top-nav .logo-wrapper #mobile-nav-toggle .mobile-nav-open svg:last-of-type {
display: block;
}
.top-nav nav.main-nav > div {
height: 100%;
}

View File

@@ -1,4 +1,4 @@
{
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
"/app.css": "/app.css?id=b0a787eafff9fde54128004303799552"
"/app.css": "/app.css?id=f4465d68fb8fa712ad60a56d6326ecb5"
}

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 {