navigation from config + further mobile tweaks

This commit is contained in:
2022-12-11 02:13:21 +01:00
parent aaf7403e21
commit 78245b8501
3 changed files with 54 additions and 16 deletions

View File

@@ -34,3 +34,18 @@
transform: scale(1.1);
}
}
.mobile {
display: none;
}
@media screen and (max-width: 800px) {
.nav {
min-height: 3rem;
}
.desktop {
display: none;
}
.mobile {
display: inherit;
}
}