I've been struggling to remove the border or outline (not really sure which one it is) from React Select when it's focused.
Here is an image for reference. As you can see, I currently have no default border: https://i.stack.imgur.com/IubaN.png
customStyle = {
control: provided => ({
...provided,
height: 10,
width: 300,
padding: 10,
margin: 0,
marginLeft: 0,
border: "0px solid black",
fontSize: 13,
backgroundColor: 'white',
outline: 'none'
})
}
Any help would be greatly appreciated. Thank you!