Skip to content

Commit 5324f02

Browse files
committed
refactor: remove lowercase class from latest blog post component
1 parent 71a9e1a commit 5324f02

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

src/components/LatestBlogPost.astro

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ interface Props {
88
const { post } = Astro.props;
99
---
1010

11-
<div class="my-4 lowercase">
12-
<a href="/blog" class="text-gray-900 hover:underline dark:text-gray-100"
13-
>posts</a
11+
<div class="my-4">
12+
<a
13+
href="/blog"
14+
class="lowercase text-gray-900 hover:underline dark:text-gray-100">posts</a
1415
>
1516
<BlogPostCard post={post} />
1617
</div>

0 commit comments

Comments
 (0)