From d035ae89b28b772880cb60e0e919eeb9e26b3fa2 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Wed, 5 Nov 2025 13:11:46 -0600 Subject: [PATCH] Reintroduce a more modest content margin --- app/assets/stylesheets/rich-text-content.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/rich-text-content.css b/app/assets/stylesheets/rich-text-content.css index 72cba909b..2e5090592 100644 --- a/app/assets/stylesheets/rich-text-content.css +++ b/app/assets/stylesheets/rich-text-content.css @@ -1,13 +1,13 @@ @layer components { .rich-text-content { - --block-margin: 0; + --block-margin: 0.5lh; :where(h1, h2, h3, h4, h5, h6) { display: block; font-weight: 800; letter-spacing: -0.02ch; line-height: 1.1; - margin-block: var(--block-margin); + margin-block: 0 var(--block-margin); overflow-wrap: break-word; text-wrap: balance; }