Fix code background color while using white mode

Fix code background color while using the white mode with code type markdown
This commit is contained in:
auxten 2022-05-30 20:38:32 +08:00 committed by GitHub
parent 4b24331134
commit 75307696e2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,10 +30,10 @@ pre {
} }
code, pre, .highlight table, .highlight tr, .highlight td { code, pre, .highlight table, .highlight tr, .highlight td {
background: $code-background-color; background: $code-background-color !important;
[theme=dark] & { [theme=dark] & {
background: $code-background-color-dark; background: $code-background-color-dark !important;
} }
} }