botascopia-webiste-static/assets/css/_page-nav.scss
2026-02-15 23:56:23 +01:00

36 lines
No EOL
755 B
SCSS

@use "abstracts/mixins.scss" as *;
.page-nav{
.toc{
list-style: none;
max-height: calc(100vh - var(--top-target) - 10px);
overflow: scroll;
@include hide-scrollbar();
padding-bottom: 10vh;
li{
font-size: var(--fs-normal);
line-height: 1.2;
font-weight: bold;
margin-bottom: calc(var(--spacing)*1);
a{
color: currentColor;
text-decoration: none;
&:hover{
text-decoration: 1px underline;
text-underline-offset: 2px;
}
}
}
}
}