mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-03 00:19:57 -04:00
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:
parent
603ad8088c
commit
7195c1bdc0
4 changed files with 12 additions and 13 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue