roadmap/quartz/components/styles/legacyToc.scss

28 lines
379 B
SCSS
Raw Permalink Normal View History

2023-06-17 19:07:40 +00:00
details#toc {
2023-06-17 02:41:59 +00:00
& summary {
cursor: pointer;
&::marker {
color: var(--dark);
}
& > * {
padding-left: 0.25rem;
display: inline-block;
margin: 0;
}
}
2023-07-23 00:27:41 +00:00
2023-06-17 02:41:59 +00:00
& ul {
list-style: none;
margin: 0.5rem 1.25rem;
padding: 0;
}
@for $i from 1 through 6 {
& .depth-#{$i} {
padding-left: calc(1rem * #{$i});
}
}
}