From c7a21c7a69cf916fc4b16a4132e89676ef98c3b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Wed, 28 May 2025 18:37:59 +0400 Subject: [PATCH] Add top margin to h3 within content --- app/assets/stylesheets/components/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/assets/stylesheets/components/base.css b/app/assets/stylesheets/components/base.css index 6824786..a9e082e 100644 --- a/app/assets/stylesheets/components/base.css +++ b/app/assets/stylesheets/components/base.css @@ -32,6 +32,10 @@ @apply pt-8 sm:pt-12; } + main section h3:not(:first-child) { + @apply mt-8; + } + main section:first-of-type { @apply pt-0; }