Remove the article specifier from these selectors

The .content element is no longer an article. It's a <main>.
This commit is contained in:
Eryn Wells 2024-10-08 09:08:14 -07:00
parent e1ad32ab12
commit 5eb9c2c826

View file

@ -75,7 +75,7 @@ body {
.site-header,
.main--list,
.main--single,
article.content
.content
{
display: grid;
grid-template-columns: subgrid;
@ -105,11 +105,11 @@ article.content
grid-column: main-start / main-end;
}
article.content > :not(figure, pre) {
.content > :not(figure, pre) {
grid-column: main-start / main-end;
}
article.content > :is(.figure--image, pre) {
.content > :is(.figure--image, pre) {
grid-column: wide-gutter-start / wide-gutter-end;
}