Skip to content

Commit

Permalink
fix: Fix list box item destructive color (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciaszczykm authored Jun 25, 2024
1 parent 9521e37 commit 693d688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ListBoxItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const ListBoxItemInner = styled.div<Partial<ListBoxItemProps>>(
color: disabled
? theme.colors['text-primary-disabled']
: destructive
? theme.colors['text-danger']
? theme.colors['text-danger-light']
: theme.colors.text,
},
'.description': {
Expand Down

0 comments on commit 693d688

Please sign in to comment.