1
0

Better aside navigation responsivity

This commit is contained in:
2022-06-06 23:19:09 +02:00
parent 639d1744b1
commit 6ab6193662
3 changed files with 24 additions and 3 deletions

View File

@ -99,6 +99,7 @@ aside {
text-decoration: none;
}
}
li.mobile-only { display: none }
}
}
@ -195,5 +196,19 @@ a {
}
@media screen and (max-width: 50rem) {
.grid { grid-template-columns: auto }
aside {
ul { display: none }
ul.nav {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
ul li.mobile-only { display: list-item }
span.title { display: none }
}
header, aside { margin-bottom: 3rem }
}