mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-05-18 14:34:23 +02:00
16 lines
205 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|