Skip to content

Commit 689360a

Browse files
committed
update: set font size of title in BlogCard smaller
1 parent 4d701ea commit 689360a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/cards/BlogCard.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
let { id, title, preview, tags, createdAt }: BlogCardProps = $props();
1313
</script>
1414

15-
<div class="border-yellow space-y-2 rounded-lg border p-5 max-md:p-3">
16-
<h3 class="text-3xl font-semibold max-md:text-2xl">
15+
<div class="border-yellow space-y-2.5 max-md:space-y-2 rounded-lg border p-5 max-md:p-3">
16+
<h3 class="text-2xl font-semibold max-md:text-xl">
1717
<a class="hover:text-yellow-light transition-colors" href={`/blog/${id}`}>{title}</a>
1818
</h3>
1919
<p class="text-yellow-light">

0 commit comments

Comments
 (0)