From c71c084be358cab21d9655b8ca267e28af7f775e Mon Sep 17 00:00:00 2001 From: leomet07 Date: Thu, 23 Nov 2023 17:26:10 -0500 Subject: [PATCH] Hide empty paragraphs, indent first paragraph --- styles/[article_slug].module.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/styles/[article_slug].module.css b/styles/[article_slug].module.css index d501bfe..bd92ff7 100644 --- a/styles/[article_slug].module.css +++ b/styles/[article_slug].module.css @@ -72,6 +72,14 @@ color: var(--primary) !important; } +#content p:first-of-type { + text-indent: 36px !important; +} + +#content p br { + display: none; +} + #content a { text-decoration: underline; }