web: mobile navigation

This commit is contained in:
wukko
2024-06-14 17:33:33 +06:00
parent 5399ee9a4c
commit 92cccd720d
4 changed files with 60 additions and 0 deletions

View File

@@ -42,4 +42,14 @@
display: flex;
overflow: scroll;
}
@media screen and (max-width: 535px) {
#cobalt {
display: grid;
grid-template-columns: unset;
grid-template-rows: 1fr var(--sidebar-width);
}
#content {
order: -1;
}
}
</style>