aboutsummaryrefslogtreecommitdiff
path: root/src/pages/Blog.tsx
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-06-26 23:49:19 +0200
committerschererleander <leander@schererleander.de>2025-06-26 23:49:19 +0200
commitaf524778849d94413ad3178c64b150c7bc3d653b (patch)
treec3b9f7a14617145688257d24524ae629f1c6b4eb /src/pages/Blog.tsx
parentb970fecb331d6eabe8eca96a93a6ecb7605780b8 (diff)
chore: styling
Diffstat (limited to 'src/pages/Blog.tsx')
-rw-r--r--src/pages/Blog.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pages/Blog.tsx b/src/pages/Blog.tsx
index 42e2716..47b44d6 100644
--- a/src/pages/Blog.tsx
+++ b/src/pages/Blog.tsx
@@ -28,7 +28,7 @@ export default function Blog() {
<h1 className="text-4xl font-bold mb-8">Blog</h1>
{posts.map((post) => (
- <a key={post.slug} href={`/blog/${post.slug}`} className="block">
+ <a key={post.slug} href={`/blog/${post.slug}`} className="block py-1">
<CardLink
title={post.title}
body={post.excerpt}
@@ -38,4 +38,4 @@ export default function Blog() {
))}
</section>
);
-} \ No newline at end of file
+}