Skip to content

Commit

Permalink
refactor(ButtonFaint): paddings consistency with Input
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Jul 18, 2024
1 parent 604c912 commit 66cf252
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/ButtonFaint.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ export const ButtonFaint = forwardRef(function ButtonFaint(
className={clsx(
className,
"font-medium",
size === "sm" && "px-2",
size === "md" && "px-2.5",
size === "lg" && "px-3",
size === "sm" && "px-2.5",
size === "md" && "px-3",
size === "lg" && "px-4",
color === "neutral" && "text-ui-neutral-950 active:bg-ui-neutral-100",
color === "accent" && "text-ui-accent-700 active:bg-ui-accent-100",
)}
Expand Down

0 comments on commit 66cf252

Please sign in to comment.