From d9e60ddd92688c12856a6cbfafedd3deb97399f6 Mon Sep 17 00:00:00 2001 From: lunyachek Date: Tue, 21 Feb 2023 17:43:03 +0200 Subject: [PATCH] fix: Fix for code block formatting on the post preview and published post view --- src/index.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/index.scss b/src/index.scss index 738c50d4..dd8efd96 100755 --- a/src/index.scss +++ b/src/index.scss @@ -254,3 +254,12 @@ header { align-self: center; } } + +.post-preview, +.discussion-comments { + blockquote { + border-left: 2px solid #ccc; + margin-left: 1.5rem; + padding-left: 1rem; + } +}