Skip to content

Commit

Permalink
styles/category-slugs: Fix dark-mode styling (#8672)
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 committed May 18, 2024
1 parent b29e1ff commit 553d98c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/styles/category-slugs.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.list {
background-color: white;
background-color: light-dark(white, #141413);
border-radius: var(--space-3xs);
box-shadow: 0 1px 3px hsla(51, 90%, 42%, .35);
box-shadow: 0 1px 3px light-dark(hsla(51, 90%, 42%, .35), #232321);
margin-bottom: var(--space-s);

dt {
Expand All @@ -16,6 +16,6 @@
}

> * + dt {
border-top: 1px solid hsla(51, 90%, 42%, .25);
border-top: 1px solid light-dark(hsla(51, 90%, 42%, .25), #424242);
}
}

0 comments on commit 553d98c

Please sign in to comment.