fix(dashboard): increase contrast of text in code blocks

This commit is contained in:
Jake Fulmine 2023-06-03 12:35:13 +02:00
parent a48f2b40c4
commit a5c6fdbbf4
1 changed files with 9 additions and 1 deletions

View File

@ -6,4 +6,12 @@ $primary-alt: #da9317;
// dark mode. dark.scss extends nightshade
@import "bootstrap-nightshade.scss";
@import "dark.scss";
@import "dark.scss";
code {
color: #000000;
}
html.dark code {
color: #ffffff;
}