quartz/quartz/components/styles/sidenotes.scss
Aaron Pham 3529b10af3
feat(components): sidenotes
Signed-off-by: Aaron Pham <contact@aarnphm.xyz>
2024-10-30 06:16:00 -04:00

16 lines
205 B
SCSS

.sidenotes {
& > ol {
padding-inline-start: 0;
}
& .sidenote-element {
transition: opacity 0.2s ease;
opacity: 0;
margin-bottom: 1rem;
&.in-view {
opacity: 1;
}
}
}