We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aba2fcb commit aa4f19bCopy full SHA for aa4f19b
src/components/Select.tsx
@@ -26,7 +26,7 @@ function Select<T>({ innerRef, onChange, ...props }: SelectProps<T>) {
26
const styles: StylesConfig<SelectOption<T>, boolean, GroupBase<SelectOption<T>>> = {
27
control: (provided, state) => ({
28
...provided,
29
- border: `1px solid ${state.isFocused ? 'transparent' : '#D1D5DB'} !important`,
+ border: `1px solid ${state.isFocused ? 'transparent' : 'rgba(0, 0, 0, 0.3)'} !important`,
30
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',
31
paddingTop: '2px',
32
paddingBottom: '2px',
0 commit comments