From 53ed6849af237fff3df8591cbeb0e4f8902b73a6 Mon Sep 17 00:00:00 2001 From: Gigi Date: Mon, 13 Oct 2025 23:38:14 +0200 Subject: [PATCH] feat(ui): add vertical padding to blockquotes Add 1rem top and bottom padding to blockquotes for better spacing and visual separation --- src/styles/components/reader.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles/components/reader.css b/src/styles/components/reader.css index 73028dce..5b809b59 100644 --- a/src/styles/components/reader.css +++ b/src/styles/components/reader.css @@ -122,7 +122,7 @@ } .reader-markdown blockquote, .reader-html blockquote { margin: 1.5rem 0; - padding-left: 2rem; + padding: 1rem 0 1rem 2rem; font-style: italic; } .reader-markdown blockquote p, .reader-html blockquote p { margin: 0.5rem 0; }