Skip to content

Commit b498063

Browse files
committed
refactor(styled button): remove border-base from solid variants
1 parent 18d302a commit b498063

File tree

1 file changed

+3
-3
lines changed
  • packages/kit-styled/src/components/button

1 file changed

+3
-3
lines changed

packages/kit-styled/src/components/button/button.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ const buttonVariants = cva(
1010
variants: {
1111
look: {
1212
primary:
13-
'bg-primary text-primary-foreground hover:bg-primary/90 shadow-sm transition-all active:press active:shadow-base border-base',
13+
'bg-primary text-primary-foreground hover:bg-primary/90 shadow-sm transition-all active:press active:shadow-base',
1414
secondary:
15-
'bg-secondary text-secondary-foreground hover:bg-secondary/90 shadow-sm transition-all active:press active:shadow-base border-base',
15+
'bg-secondary text-secondary-foreground hover:bg-secondary/90 shadow-sm transition-all active:press active:shadow-base',
1616
alert:
17-
'bg-alert text-alert-foreground hover:bg-alert/90 shadow-sm transition-all active:press active:shadow-base border-base',
17+
'bg-alert text-alert-foreground hover:bg-alert/90 shadow-sm transition-all active:press active:shadow-base',
1818
outline:
1919
'shadow-sm transition-all active:press active:shadow-base bg-background text-foreground border hover:bg-accent',
2020
ghost: 'text-accent-foreground hover:bg-accent',

0 commit comments

Comments
 (0)