commit 113a82700af24221ca93bf7c0f216ebccabf617f
parent 1d21908e561420d843f5c42f3dddb11872b901ff
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date: Sat, 5 Apr 2025 12:05:20 +0200
fix: remove trailing comma
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/assets/css/custom.css b/assets/css/custom.css
@@ -9,7 +9,7 @@ section > p > br
display: none;
}
/* Only show first paragraph of article content (typically the summary) */
-.article_content *:nth-child(n + 2),
+.article_content *:nth-child(n + 2)
{
display: none;
}
@@ -26,7 +26,7 @@ section > p > br
/* Hide iframes and images in case they are not filtered out */
.article_content iframe,
.article_content img,
-.article_content figcaption,
+.article_content figcaption
{
display: none;
}