Skip to content

Commit

Permalink
hot fx: improve rounding on larger button sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Nov 18, 2024
1 parent 922b751 commit 47a9cdb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions dist/lumuix.js
Original file line number Diff line number Diff line change
Expand Up @@ -13277,9 +13277,9 @@ const im = /* @__PURE__ */ b({
default: "h-9 p-5 text-base",
xs: "h-6 rounded-md text-xs",
sm: "h-8 rounded-md p-4 text-sm",
lg: "h-10 rounded-md px-8 text-lg",
xl: "h-12 rounded px-14 text-xl",
xxl: "h-14 rounded px-16 text-2xl",
lg: "h-10 rounded-lg px-8 text-lg",
xl: "h-12 rounded-lg px-14 text-xl",
xxl: "h-14 rounded-lg px-16 text-2xl",
icon: "h-9 w-9"
}
},
Expand Down
2 changes: 1 addition & 1 deletion dist/lumuix.umd.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sethsharp/lumuix",
"version": "1.0.0-alpha.17.2",
"version": "1.0.0-alpha.17.3",
"type": "module",
"files": [
"dist",
Expand Down
6 changes: 3 additions & 3 deletions src/components/button/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export const buttonVariants = cva(
default: 'h-9 p-5 text-base',
xs: 'h-6 rounded-md text-xs',
sm: 'h-8 rounded-md p-4 text-sm',
lg: 'h-10 rounded-md px-8 text-lg',
xl: 'h-12 rounded px-14 text-xl',
xxl: 'h-14 rounded px-16 text-2xl',
lg: 'h-10 rounded-lg px-8 text-lg',
xl: 'h-12 rounded-lg px-14 text-xl',
xxl: 'h-14 rounded-lg px-16 text-2xl',
icon: 'h-9 w-9',
},
},
Expand Down

0 comments on commit 47a9cdb

Please sign in to comment.