From 1fc6a0bc84004b694998e9dd3d9b185a43a1f7f7 Mon Sep 17 00:00:00 2001 From: prrao87 Date: Wed, 28 Feb 2024 10:34:13 -0500 Subject: [PATCH] Fix blog thumbnail image margin --- src/layouts/Posts.astro | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/layouts/Posts.astro b/src/layouts/Posts.astro index b5f504d..838243b 100644 --- a/src/layouts/Posts.astro +++ b/src/layouts/Posts.astro @@ -27,15 +27,15 @@ type PostType = { class="mx-auto grid grid-cols-1 md:grid-cols-2 gap-x-8 gap-y-16 lg:mx-0 lg:max-w-none lg:grid-cols-3" > { - posts?.slice(0, config.site.pageSize).map((p: PostType) => ( + posts?.slice(0, config.site.pageSize).map((post: PostType) => (