Created
July 29, 2025 07:36
-
-
Save abdasis/ed7b8aec262e4bb27b00f809a019d155 to your computer and use it in GitHub Desktop.
fix autofill background tailwindcss
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:-webkit-autofill, | |
| input:-webkit-autofill:focus, | |
| input:-webkit-autofill:hover, | |
| input:-webkit-autofill:active { | |
| -webkit-box-shadow: 0 0 0 100px transparent inset !important; | |
| box-shadow: 0 0 0 100px transparent inset !important; | |
| background-color: transparent !important; | |
| color: #1f2937 !important; /* Tailwind text-gray-900 */ | |
| transition: background-color 5000s ease-in-out 0s; | |
| } | |
| input.dark:-webkit-autofill { | |
| -webkit-box-shadow: 0 0 0 100px transparent inset !important; | |
| box-shadow: 0 0 0 100px transparent inset !important; | |
| background-color: transparent !important; | |
| color: #f3f4f6 !important; /* Tailwind text-gray-100 */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment