Skip to content

Commit c0967c9

Browse files
committed
style: remove highlight border from buttons
1 parent bed8f81 commit c0967c9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/Button/Base.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ defineExpose({
3535
:class="{
3636
'text-sm px-4 py-2': size === 'medium',
3737
'text-xs px-2 py-0.5': size === 'small',
38-
'from-fg/10 via-transparent to-transparent text-fg hover:enabled:(bg-accent/20 border-accent) focus-visible:enabled:(bg-accent/20 border-accent)':
38+
'from-fg/10 via-transparent to-transparent text-fg hover:enabled:(bg-accent/20) focus-visible:enabled:(bg-accent/20)':
3939
variant === 'secondary',
4040
'text-black from-accent via-accent to-accent/30 hover:enabled:(bg-accent/50) focus-visible:enabled:(bg-accent/50)':
4141
variant === 'primary',

app/components/Link/Base.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const isButtonMedium = computed(() => props.size === 'medium' && props.variant !
8282
isButton,
8383
'text-sm px-4 py-2': isButtonMedium,
8484
'text-xs px-2 py-0.5': isButtonSmall,
85-
'from-fg/10 via-transparent to-transparent text-fg hover:(bg-accent/20 border-accent) focus-visible:(bg-accent/20 border-accent)':
85+
'from-fg/10 via-transparent to-transparent text-fg hover:(bg-accent/20) focus-visible:(bg-accent/20)':
8686
variant === 'button-secondary',
8787
'text-black from-accent via-accent to-accent/30 hover:(bg-accent/50) focus-visible:(bg-accent/50)':
8888
variant === 'button-primary',

0 commit comments

Comments
 (0)