Skip to content

Commit

Permalink
fix(components-Article): adjust line length (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabertazimi committed Jun 8, 2022
1 parent 27abebb commit d235b63
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Article/Article.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Article = ({
<div>
<ArticleHeader post={postMeta} />
<ArticleToc slug={slug} />
<Container className="px-6 max-w-screen-lg md:max-w-9/12 xl:max-w-7/12">
<Container className="px-6 max-w-screen-lg md:max-w-9/12 xl:max-w-3xl">
<ArticleContent source={source} />
<Divider>{subtitle || 'Blog'}</Divider>
<ArticleNav prevPost={prevPost} nextPost={nextPost} />
Expand Down
4 changes: 2 additions & 2 deletions components/Article/__snapshots__/Article.test.tsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ exports[`Article should render correctly (snapshot) 1`] = `
</div>
</div>
<div
class="container relative block h-full mx-auto my-0 p-auto px-6 max-w-screen-lg md:max-w-9/12 xl:max-w-7/12"
class="container relative block h-full mx-auto my-0 p-auto px-6 max-w-screen-lg md:max-w-9/12 xl:max-w-3xl"
>
<article>
<h2
Expand Down Expand Up @@ -590,7 +590,7 @@ exports[`Article should render correctly with partial data (snapshot) 1`] = `
</div>
</div>
<div
class="container relative block h-full mx-auto my-0 p-auto px-6 max-w-screen-lg md:max-w-9/12 xl:max-w-7/12"
class="container relative block h-full mx-auto my-0 p-auto px-6 max-w-screen-lg md:max-w-9/12 xl:max-w-3xl"
>
<article>
<h2
Expand Down

1 comment on commit d235b63

@vercel
Copy link

@vercel vercel bot commented on d235b63 Jun 8, 2022

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

blog – ./

blog.tazimi.dev
blog-git-main-sabertaz.vercel.app
blog-sabertaz.vercel.app

Please sign in to comment.