From aa7a5acf944819891c7c85bcb62f686394be936b Mon Sep 17 00:00:00 2001 From: tobias Date: Sun, 19 May 2024 17:36:20 +0200 Subject: [PATCH] Constrain post summary width for EZ reading --- astro/src/components/Post.astro | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/astro/src/components/Post.astro b/astro/src/components/Post.astro index 0ce9947..b52bd60 100644 --- a/astro/src/components/Post.astro +++ b/astro/src/components/Post.astro @@ -16,7 +16,7 @@ const { post } = Astro.props; alt={post.thumbnail.alt} /> -
+

{post.title}

{post.publishedDate && ( @@ -24,8 +24,8 @@ const { post } = Astro.props; {new Date(post.publishedDate).toLocaleDateString("de-DE")}

)} -
- {post.summary &&

+

+ {post.summary &&

{post.summary}

}