1
0
mirror of https://github.com/tabler/tabler.git synced 2026-07-25 20:44:38 +04:00

Fix pre rule dark mode styling (#951)

This commit is contained in:
Robert-Jan de Dreu
2021-12-03 10:35:18 +01:00
committed by GitHub
parent bbcc070ef7
commit 1018977e7f
2 changed files with 15 additions and 1 deletions
+5
View File
@@ -6,6 +6,11 @@
background-color: $dark-mode-darken;
}
pre {
background-color: $dark-mode-darken;
border-color: $dark-mode-lighten-10;
}
.text-body {
color: $dark-mode-text!important;
}
+10 -1
View File
@@ -79,8 +79,17 @@
}
@include dark-mode {
.example {
background-color: $dark-mode-darken;
border-color: $dark-mode-lighten-10;
}
.example-content {
color: $dark-mode-text;
}
.example-code {
border: 1px solid $border-color;
border-color: $dark-mode-lighten-10;
border-top: none;
}
}