Skip to content

Commit

Permalink
Remove padding from article containers
Browse files Browse the repository at this point in the history
  • Loading branch information
irmantastam committed Jan 18, 2024
1 parent ef34524 commit b9cd1fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/blog/[slug].page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ const Page = (props: InferGetStaticPropsType<typeof getStaticProps>) => {
return (
<>
{blogPost.seoFields && <SeoFields {...blogPost.seoFields} />}
<Container>
<Container className="p-0">
<ArticleHero article={blogPost} isFeatured={props.isFeatured} isReversedLayout={true} />
</Container>
<Container className="mt-8 max-w-4xl">
<Container className="mt-8 max-w-4xl p-0">
<ArticleContent article={blogPost} />
</Container>
{relatedPosts && relatedPosts.length > 0 && (
Expand Down

0 comments on commit b9cd1fa

Please sign in to comment.