Fix vertical spacing of a handful of elements

This commit is contained in:
Eryn Wells 2024-10-13 23:14:28 -07:00
parent d89f1b62b4
commit 340029a01c
4 changed files with 30 additions and 2 deletions

View file

@ -6,7 +6,8 @@
font-size: var(--text-s);
hr {
margin-block-start: var(--space-l);
border-top: 2px dashed var(--gray6);
margin-block-start: 0;
}
li:not(:last-child) {
@ -16,4 +17,8 @@
p {
font-size: inherit;
}
&:has(+ .page-footer) > ol {
margin-block-end: 0;
}
}