From be58a92df35b38bd39b47011268386af0a576697 Mon Sep 17 00:00:00 2001 From: Isabelle Date: Tue, 10 Mar 2026 17:00:49 +0100 Subject: [PATCH] feat(extra-features): introduce .section-spacer-bottom utility class --- falcon/_dev/css/theme/custom/abstracts/_utilities.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/falcon/_dev/css/theme/custom/abstracts/_utilities.scss b/falcon/_dev/css/theme/custom/abstracts/_utilities.scss index be7d93d..e1dcac3 100644 --- a/falcon/_dev/css/theme/custom/abstracts/_utilities.scss +++ b/falcon/_dev/css/theme/custom/abstracts/_utilities.scss @@ -34,3 +34,10 @@ $section-spacer-small: rem-calc(25px); margin-bottom: unset; } } +.section-spacer-bottom { + @extend .section-spacer-both; + margin-top: unset; + &--small { + margin-top: unset; + } +}