Skip to content

Commit

Permalink
availability: Fix react-select border
Browse files Browse the repository at this point in the history
  • Loading branch information
domdomegg committed Apr 26, 2024
1 parent a4bc8da commit cf9d0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/availability/src/pages/form/[slug].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ const TimeOffsetSelector: React.FC<{ className?: string }> = ({ className }) =>
},
})}
classNames={{
control: (state) => clsx('!border-2 !border-stone-200 !rounded-sm !min-h-0 !shadow-none', state.isFocused && '!border-bluedot-normal'),
control: (state) => clsx('!border-2 !rounded-sm !min-h-0 !shadow-none', state.isFocused ? '!border-bluedot-normal' : '!border-stone-200'),
valueContainer: () => '!py-0',
dropdownIndicator: () => '!py-0',
}}
Expand Down

0 comments on commit cf9d0b4

Please sign in to comment.