fix(styles): use correct dark-mode selector in css

The dark-mode selector changed from the class "dark" attached to the
body element to a data-attribute with some react-bootstrap upgrade.
This commit reflects this change in our custom css.

Signed-off-by: Erik Michelson <github@erik.michelson.eu>
This commit is contained in:
Erik Michelson 2024-09-15 22:38:09 +02:00 committed by Philip Molares
parent 603ad8088c
commit 7195c1bdc0
4 changed files with 12 additions and 13 deletions

View file

@ -18,7 +18,7 @@
@import "./markdown-tweaks";
@import "./reveal";
.text-black, body.dark .text-black {
.text-black, body[data-bs-theme=dark] .text-black {
color: $black;
}