A.com
A.com

Reputation: 1645

How to get rid of slight white border on the corners of this input in chrome (code sandbox included)?

enter image description here

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

Answers (1)

Erfan HosseinPoor
Erfan HosseinPoor

Reputation: 1077

this is for focus styling of input, you can add

input:focus {
   background: unset
}

Upvotes: 1

Related Questions