24 lines
330 B
CSS
24 lines
330 B
CSS
/************
|
|
# FOOTNOTES
|
|
************/
|
|
|
|
.footnotes {
|
|
font-size: var(--text-s);
|
|
|
|
hr {
|
|
border-top: 2px dashed var(--gray6);
|
|
margin-block-start: 0;
|
|
}
|
|
|
|
li:not(:last-child) {
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
p {
|
|
font-size: inherit;
|
|
}
|
|
|
|
&:has(+ .page-footer) > ol {
|
|
margin-block-end: 0;
|
|
}
|
|
}
|