Skip to content

Commit

Permalink
improvement: border width default set 0.5px
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglun committed Apr 18, 2024
1 parent c524601 commit 22a11a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/layout/Article/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const ArticleContainer = () => {
"grid-cols-[auto_0]": !store.podcastPanelStatus,
})}
>
<div className="bg-panel flex h-full flex-1 overflow-hidden rounded-md shadow">
<div className="bg-panel flex h-full flex-1 overflow-hidden rounded-md border">
<ArticleCol feedUuid={feedUuid} type={type} ref={articleColRef} />
<View goNext={goNext} goPrev={goPrev} />
</div>
Expand Down
3 changes: 3 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ module.exports = {
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
},
borderWidth: {
DEFAULT: '0.5px',
},
fontFamily: {
sans: ["var(--font-sans)", ...fontFamily.sans],
},
Expand Down

0 comments on commit 22a11a3

Please sign in to comment.