Improve blog design

This commit is contained in:
prototypa
2023-01-08 19:39:31 -05:00
parent b21275bc9e
commit 842b17f493
7 changed files with 23 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ const { posts } = Astro.props;
<ul>
{
posts.map((post) => (
<li class="mb-10 md:mb-16">
<li class="mb-12 md:mb-20">
<Item post={post} />
</li>
))