From 0cc8cc311ef4b223546fcd14848437beb1cb2caf Mon Sep 17 00:00:00 2001 From: "Sandra Viktoria D. Toftemo" Date: Mon, 12 Aug 2024 14:30:29 +0200 Subject: [PATCH] fix: make full stop part of h1 (#753) --- src/components/brief.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/brief.astro b/src/components/brief.astro index fa948a9b..3780f2fc 100644 --- a/src/components/brief.astro +++ b/src/components/brief.astro @@ -8,8 +8,7 @@ const { title } = Astro.props; ---
-

{title}. -

+

{title}

@@ -22,7 +21,8 @@ const { title } = Astro.props; display: flex; gap: 3rem; } - span { + h1::after { + content: '.'; font-family: 'Source Code Pro'; color: hsl(var(--blue-base) 50%); font-weight: 800;