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; + } }