Reputation: 1645
https://codesandbox.io/s/nifty-hooks-uv1gq?file=/src/styles.css
I am trying to do dark mode but there is this very slight white border in the corners of the input on chrome... any ideas what this is?
Upvotes: 0
Views: 118
Reputation: 1077
this is for focus styling of input, you can add
input:focus {
background: unset
}
Upvotes: 1