From 79a45643cb9d5a6c64eea23300f3f382d6148a11 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 8 Aug 2023 01:29:37 +0100 Subject: [PATCH] fix: remove incorrect background colour for codeblocks --- src/scss/app.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/scss/app.scss b/src/scss/app.scss index 5fe8754..af19ff7 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -168,6 +168,10 @@ pre { } } +code[class*="language-"] { + background: none !important; +} + :root { color-scheme: light dark; }