Skip to content

Commit 553d98c

Browse files
authored
styles/category-slugs: Fix dark-mode styling (#8672)
1 parent b29e1ff commit 553d98c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/styles/category-slugs.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.list {
2-
background-color: white;
2+
background-color: light-dark(white, #141413);
33
border-radius: var(--space-3xs);
4-
box-shadow: 0 1px 3px hsla(51, 90%, 42%, .35);
4+
box-shadow: 0 1px 3px light-dark(hsla(51, 90%, 42%, .35), #232321);
55
margin-bottom: var(--space-s);
66

77
dt {
@@ -16,6 +16,6 @@
1616
}
1717

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

0 commit comments

Comments
 (0)