- Add some padding to the top of the footnotes block - Add .figure--video to the list of elements that get XL block margins
24 lines
344 B
CSS
24 lines
344 B
CSS
/************
|
|
# FOOTNOTES
|
|
************/
|
|
|
|
.footnotes {
|
|
font-size: var(--text-s);
|
|
|
|
hr {
|
|
border-top: 2px dashed var(--gray6);
|
|
margin-block-start: var(--space-xl);
|
|
}
|
|
|
|
li:not(:last-child) {
|
|
margin-block-end: var(--space-xs);
|
|
}
|
|
|
|
p {
|
|
font-size: inherit;
|
|
}
|
|
|
|
&:has(+ .page-footer) > ol {
|
|
margin-block-end: 0;
|
|
}
|
|
}
|