From 6f0cdcd6689d456b6074ac19fe19c8b9a5aa8f98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Gla=CC=88ser?= Date: Thu, 28 May 2026 10:35:28 +0200 Subject: [PATCH] Make sg-body margin conditional on sibling content --- styles/03-typography-helpers.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/03-typography-helpers.css b/styles/03-typography-helpers.css index 6dfe5b3..7e71b23 100644 --- a/styles/03-typography-helpers.css +++ b/styles/03-typography-helpers.css @@ -19,6 +19,10 @@ } .sg-body { + margin: 0; +} + +.sg-body:not(:last-child) { margin: 0 0 var(--spacing-large) 0; }