Skip to content

Commit

Permalink
used same horizontal padding as header
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulsuresh-git committed Oct 3, 2024
1 parent 62293b5 commit 7e47f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ posts.sort((a, b) => compareDesc(a.data.date, b.data.date))
<div class="pt-8">
<Container
size="tight"
class="divide-y divide-slate-200 dark:divide-neutral-700 mx-auto px-2"
class="divide-y divide-slate-200 dark:divide-neutral-700 mx-auto px-[4vw]"
>
{posts.map((post) => <BlogRow {post} />)}
</Container>
Expand Down

0 comments on commit 7e47f95

Please sign in to comment.