Skip to content

Commit

Permalink
fix CSS rule againain
Browse files Browse the repository at this point in the history
  • Loading branch information
reteps committed Sep 16, 2024
1 parent 155a2fa commit 6d0cacf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sigpwny.com/src/components/Meeting/Row.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ const notUpcomingVisibility = showUpcoming ? 'none' : 'block';
display: none !important;
}
/* TODO: has selector doesn't have the greatest coverage currently */
li :has(div[data-tag="upcoming"]) {
li:has(div[data-tag="upcoming"]) {
display: var(--upcomingVisibility);
}
li :not(:has(div[data-tag="upcoming"])) {
li:not(:has(div[data-tag="upcoming"])) {
display: var(--notUpcomingVisibility);
}

Expand Down

0 comments on commit 6d0cacf

Please sign in to comment.