From 5eb9c2c826522aa3ffdc004873cac6f5b52adaf5 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 8 Oct 2024 09:08:14 -0700 Subject: [PATCH] Remove the article specifier from these selectors The .content element is no longer an article. It's a
. --- assets/css/010_structure.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/css/010_structure.css b/assets/css/010_structure.css index 64eddf2..c85a255 100644 --- a/assets/css/010_structure.css +++ b/assets/css/010_structure.css @@ -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; }