19 lines
241 B
CSS
19 lines
241 B
CSS
/************
|
|
# FOOTNOTES
|
|
************/
|
|
|
|
.footnotes {
|
|
font-size: var(--text-s);
|
|
|
|
hr {
|
|
margin-block-start: var(--space-l);
|
|
}
|
|
|
|
li:not(:last-child) {
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
p {
|
|
font-size: inherit;
|
|
}
|
|
}
|