Created
August 15, 2023 17:08
-
-
Save pradishb/fcc11295aa3888f12e7c13ee1d737a13 to your computer and use it in GitHub Desktop.
Remove input autofill background
This file contains 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:-webkit-autofill, | |
input:-webkit-autofill:focus { | |
transition: background-color 600000s 0s, color 600000s 0s; | |
} | |
input[data-autocompleted] { | |
background-color: transparent !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment