React-Select Remove focus border
React-select v3 const style = { control: base => ({ …base, border: 0, // This line disable the blue border boxShadow: ‘none’ }) }; Here a live example React-select v2 To reset border when Select is focused you have two solutions: Use the state control: (base, state) => ({ …base, border: state.isFocused ? 0 : … Read more