From 057b93b1b2e8d946b480bce8d1716b811e8ff373 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 15 Apr 2023 17:50:52 -0700 Subject: [PATCH] fix(web): improve spacing in custom bottom section with headers --- web/components/ui/Content/Content.module.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/web/components/ui/Content/Content.module.scss b/web/components/ui/Content/Content.module.scss index 429dcbd9d..7e72ccce9 100644 --- a/web/components/ui/Content/Content.module.scss +++ b/web/components/ui/Content/Content.module.scss @@ -132,4 +132,10 @@ padding: calc(2 * var(--content-padding)); border-radius: var(--theme-rounded-corners); width: 100%; + + h1:first-child, + h2:first-child, + h3:first-child { + margin-top: unset; + } }