mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
25 lines
482 B
SCSS
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;
|
|
}
|
|
|
|
}
|
|
} |