Skip to content

Commit

Permalink
fix aligment. fixes #15
Browse files Browse the repository at this point in the history
  • Loading branch information
surjithctly committed Apr 13, 2023
1 parent 90c348d commit 2546130
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/blog/[slug].astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const { Content } = await entry.render();

<Layout title={entry.data.title}>
<Container>
<div class="mx-auto max-w-[735px] mt-14">
<div class="mx-auto max-w-3xl mt-14">
<span class="text-blue-400 uppercase tracking-wider text-sm font-medium">
{entry.data.category}
</span>
Expand Down Expand Up @@ -48,8 +48,8 @@ const { Content } = await entry.render();
</div>
</div>

<div class="mx-auto prose prose-lg mt-6">
<Content />
<div class="mx-auto prose prose-lg mt-6 max-w-3xl">
<Content />
</div>
<div class="text-center mt-8">
<a
Expand Down

1 comment on commit 2546130

@vercel
Copy link

@vercel vercel bot commented on 2546130 Apr 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.