From 5d3df56d87a2f3899891a8e066482cbf17ab7f58 Mon Sep 17 00:00:00 2001 From: Ben C Date: Wed, 6 May 2026 10:18:39 -0400 Subject: [PATCH] blog: fix image sizing --- src/pages/blog/[...slug].astro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/blog/[...slug].astro b/src/pages/blog/[...slug].astro index 140c9d8..fb038d3 100644 --- a/src/pages/blog/[...slug].astro +++ b/src/pages/blog/[...slug].astro @@ -44,11 +44,11 @@ const { Content, headings } = await render(entry); flex-direction: column; gap: var(--6); - :first-child { + & > :first-child { min-width: min-content; } - :last-child { + & > :last-child { min-width: 0; } } -- 2.51.2