Skip to content

Commit

Permalink
fix(select): add border color on trigger focus (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
balzdur authored Aug 17, 2023
2 parents 898ca5a + fbf1ba4 commit 0398603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ui-design-system/src/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const SelectTrigger = forwardRef<HTMLButtonElement, SelectTriggerProps>(
ref={ref}
className={clsx(
'bg-grey-00 border-grey-10 text-s text-grey-100 group flex h-10 items-center justify-between border font-medium outline-none',
'radix-state-open:border-purple-100 radix-state-open:text-purple-100',
'radix-state-open:border-purple-100 radix-state-open:text-purple-100 focus:border-purple-100',
'radix-disabled:border-grey-10 radix-disabled:bg-grey-05 radix-disabled:text-grey-50',
{
'rounded px-2': border === 'square',
Expand Down

0 comments on commit 0398603

Please sign in to comment.