Created
November 23, 2024 23:55
-
-
Save rodrigotoledo/44cc8cec2c8f0cd7e81c04a17c0495da to your computer and use it in GitHub Desktop.
remove-bg.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input:focus-within, input:focus, textarea:focus, select:focus { | |
outline-style: none; | |
outline: none; | |
background-color: white !important; | |
box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.5); | |
} | |
input:-webkit-autofill, | |
input:-webkit-autofill:hover, | |
input:-webkit-autofill:focus, | |
input:-webkit-autofill:active{ | |
-webkit-box-shadow: 0 0 0 30px white inset !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment