From 0befa58908ae3f5a2467429d1ab0ff7fded0eb46 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 26 Dec 2021 19:15:42 +0100 Subject: [PATCH] fix: blockquote styling in dark mode --- src/styles/theme/content.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/styles/theme/content.scss b/src/styles/theme/content.scss index 08eadd1c3..c3d8b60fe 100644 --- a/src/styles/theme/content.scss +++ b/src/styles/theme/content.scss @@ -24,3 +24,7 @@ max-width: $widescreen; } +.content blockquote { + background-color: var(--grey-200); + border-left: .25rem solid var(--grey-300); +}