Skip to content

Commit

Permalink
fix: make the border 1px on the article details page (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
crnkovic authored Oct 25, 2023
1 parent f5b02e5 commit 72ceec4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/Pages/Articles/Show.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const ArticlesShow = ({ article, popularArticles }: Properties): JSX.Element =>
<article className="w-full lg:px-8 2xl:px-0">
<div className="article-wrapper -mt-6 px-6 sm:-mt-8 sm:px-8 md:px-24 lg:mt-0 lg:rounded-xl lg:border lg:border-theme-secondary-300 lg:px-0">
<div className="mx-auto bg-white/20 pt-8 md:max-w-[768px] xl:max-w-[1000px]">
<div className="border-b-2 border-theme-secondary-400 pb-3">
<div className="border-b border-theme-secondary-400 pb-3">
<Heading level={1}>{article.title}</Heading>
</div>
</div>
Expand Down

0 comments on commit 72ceec4

Please sign in to comment.