Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dillonzq/LoveIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorauxten <auxten@users.noreply.github.com>2022-05-30 15:38:32 +0300
committerGitHub <noreply@github.com>2022-05-30 15:38:32 +0300
commit75307696e2219961545ce91a6e7c7a53c117ddf8 (patch)
tree6a20eb2eab67caa5bf0b3677b5005f1ef2507db6 /assets
parent4b24331134cf1795e4ca8e08f9e318e36b2b9dbb (diff)
Fix code background color while using white mode
Fix code background color while using the white mode with code type markdown
Diffstat (limited to 'assets')
-rw-r--r--assets/css/_partial/_single/_code.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/css/_partial/_single/_code.scss b/assets/css/_partial/_single/_code.scss
index 42583a9a..a573d465 100644
--- a/assets/css/_partial/_single/_code.scss
+++ b/assets/css/_partial/_single/_code.scss
@@ -30,10 +30,10 @@ pre {
}
code, pre, .highlight table, .highlight tr, .highlight td {
- background: $code-background-color;
+ background: $code-background-color !important;
[theme=dark] & {
- background: $code-background-color-dark;
+ background: $code-background-color-dark !important;
}
}