Skip to content

Commit aa4f19b

Browse files
committed
fix select border
1 parent aba2fcb commit aa4f19b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function Select<T>({ innerRef, onChange, ...props }: SelectProps<T>) {
2626
const styles: StylesConfig<SelectOption<T>, boolean, GroupBase<SelectOption<T>>> = {
2727
control: (provided, state) => ({
2828
...provided,
29-
border: `1px solid ${state.isFocused ? 'transparent' : '#D1D5DB'} !important`,
29+
border: `1px solid ${state.isFocused ? 'transparent' : 'rgba(0, 0, 0, 0.3)'} !important`,
3030
boxShadow: state.isFocused ? 'rgb(255, 255, 255) 0px 0px 0px 0px, rgb(236, 72, 153) 0px 0px 0px 3px, rgba(0, 0, 0, 0) 0px 0px 0px 0px' : 'none',
3131
paddingTop: '2px',
3232
paddingBottom: '2px',

0 commit comments

Comments
 (0)