From 671d424d19d923029c0ef45d2359fcb48603014a Mon Sep 17 00:00:00 2001 From: Ben Limmer <630449+blimmer@users.noreply.github.com> Date: Fri, 30 Aug 2024 11:28:47 -0600 Subject: [PATCH] fix: blockquote styling (#61) --- _css/custom.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/_css/custom.css b/_css/custom.css index da8a734..c27bef4 100644 --- a/_css/custom.css +++ b/_css/custom.css @@ -47,6 +47,17 @@ code { color: inherit; } +blockquote { + padding: 1rem 1.5rem; + margin: 1rem 0; + border-left: 4px solid #ccc; + background-color: #f9f9f9; +} + +blockquote p:last-of-type { + margin: 0; +} + .page-content { min-height: 500px; }