Skip to content

Commit

Permalink
fix(cli): add xl item to borderRadius in tailwind.config template (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
itsTPM committed Feb 3, 2024
1 parent 5c69b21 commit 83d0a06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions apps/www/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default {
},
},
borderRadius: {
xl: 'calc(var(--radius) + 4px)',
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
Expand Down
1 change: 1 addition & 0 deletions packages/cli/src/utils/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ module.exports = {
},
},
borderRadius: {
xl: "calc(var(--radius) + 4px)",
lg: "var(--radius)",
md: "calc(var(--radius) - 2px)",
sm: "calc(var(--radius) - 4px)",
Expand Down

0 comments on commit 83d0a06

Please sign in to comment.