From dc62c121efebc1475e3ed458ee0281258de5a2fb Mon Sep 17 00:00:00 2001 From: CactiChameleon9 <51231053+CactiChameleon9@users.noreply.github.com> Date: Sat, 24 Aug 2024 13:42:48 +0100 Subject: [PATCH] Fix odd right margin on blockquotes --- templates/_style.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/_style.html b/templates/_style.html index 56b9db1..30e0e0c 100644 --- a/templates/_style.html +++ b/templates/_style.html @@ -188,9 +188,10 @@ blockquote { border-left: 8px solid var(--text-subcolor); - padding: 0 1em; + padding: 0 0 0 1em; font-style: italic; margin-left: calc(-1em - 8px); + margin-right: 0; } img {