Remove the grid from figures in two-column grid

This lays out figcaptions better than with the grid.
This commit is contained in:
Eryn Wells 2025-01-14 19:29:52 -08:00
parent ccedb4c2bd
commit 5a67372ee5

View file

@ -164,6 +164,10 @@ main.content > .two-column {
grid-column: unset;
}
> .figure {
display: block;
}
&:has(figure:first-child + figure:last-child) {
gap: var(--space-xs);
grid-column: wide-gutter-start / wide-gutter-end;