Create assets/styles/root to hold all the fragments of the root stylesheet. This should make it easier to find and hack on style. Yay!
8 lines
301 B
CSS
8 lines
301 B
CSS
@layer root {
|
|
main > :first-child,
|
|
main > article > :first-child { margin-block-start: 0; }
|
|
main > :not(:last-child),
|
|
main > article > :not(:last-child) { margin-block-end: var(--body-item-spacing); }
|
|
main > :last-child,
|
|
main > article > :last-child { margin-block-end: 0; }
|
|
}
|