From 60d8f66ad01041d24de165c8cd801eaf9db787c9 Mon Sep 17 00:00:00 2001 From: xy <10816187@qq.com> Date: Mon, 20 Jul 2026 23:38:03 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/PostList.astro | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/components/PostList.astro b/src/components/PostList.astro index 03b0b82..76eb39a 100644 --- a/src/components/PostList.astro +++ b/src/components/PostList.astro @@ -226,12 +226,15 @@ posts.map((post) => { .post-card { padding: 16px; + gap: 12px; } .post-cover { width: 128px; height: 88px; } + + } @media (max-width: 560px) { @@ -242,6 +245,15 @@ posts.map((post) => { .post-title { font-size: 16px; } + + .post-meta{ + gap: 6px; + } + + .post-cover { + width: 100px; + height: 70px; + } }