From efa33f26ec28419c1e0c90a5235d7791b62a5fc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20LUDWIG?= Date: Tue, 21 May 2024 19:06:12 +0200 Subject: [PATCH] fix(blog): headings should be aligned with the text, not shifted --- blog/BlogPostContent.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/blog/BlogPostContent.tsx b/blog/BlogPostContent.tsx index 42ced83..2270786 100644 --- a/blog/BlogPostContent.tsx +++ b/blog/BlogPostContent.tsx @@ -26,14 +26,14 @@ const Heading = ( ): JSX.Element => { const { children, id = "" } = props return ( -

- - +

+ + + {children} - {children}

) }