From 3a1872c03ef684b38d3c40aa3728233912805b5b Mon Sep 17 00:00:00 2001 From: ahangarha Date: Fri, 11 Jun 2021 11:53:28 +0000 Subject: [PATCH] Draw side line for blockquote on start By this change, the line beside blockquote would appear at start. It means if the text is in LTR language, it appears on left and if it is in RTL, the line appears on right. --- assets/themes/default/_article.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/themes/default/_article.scss b/assets/themes/default/_article.scss index 5d1ee909..9bc887d5 100644 --- a/assets/themes/default/_article.scss +++ b/assets/themes/default/_article.scss @@ -98,7 +98,7 @@ main article { } blockquote { - border-left: 5px solid $gray; + border-inline-start: 5px solid $gray; margin: 1em auto; padding: 0em 2em; }