personal_site/_sass/nav.scss
2023-09-23 13:04:42 +02:00

25 lines
482 B
SCSS

nav {
display: flex;
flex-direction: column;
}
.current {
color: darkslategray;
}
@media
only screen and (max-width: $horizontal_breakpoint),
only screen and (max-height: $vertical_breakpoint)
{
nav.page-table-of-contents {
white-space: normal;
justify-content: left;
text-align: left;
ul {padding-left: 0em;}
li li {
padding-right: 0em;
padding-left: 2em;
}
}
}