Skip to content

Instantly share code, notes, and snippets.

@ElForastero
Last active March 30, 2022 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ElForastero/7411701825052730f6f0c2bbc1298638 to your computer and use it in GitHub Desktop.
Save ElForastero/7411701825052730f6f0c2bbc1298638 to your computer and use it in GitHub Desktop.
How to remove autofill input background from chrome
.input:-webkit-autofill,
.input:-webkit-autofill:hover,
.input:-webkit-autofill:focus,
.input:-webkit-autofill:active {
-webkit-text-fill-color: var(--color-text-primary);
transition: background-color 999999999s ease-in-out 0s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment