fix: dark theme

This commit is contained in:
Cory Dransfeldt 2024-01-02 13:59:02 -08:00
parent 50bca3c66d
commit 489f436d9c
No known key found for this signature in database
2 changed files with 6 additions and 1 deletions

View file

@ -453,7 +453,7 @@ footer nav {
stroke: var(--blue-400);
}
.main__title, footer nav:last-child a {
:is(.main__title, footer nav:last-child) a {
color: var(--white);
}

View file

@ -9,6 +9,7 @@
}
.pagination button > svg {
stroke: var(--blue-600);
cursor: pointer;
}
@ -20,6 +21,10 @@
}
@media (prefers-color-scheme: dark) {
.pagination button > svg {
stroke: var(--blue-400);
}
.pagination button.disabled > svg {
stroke: var(--white);
}