This commit is contained in:
Rohit Mehta 2025-12-12 08:45:35 +01:00 committed by GitHub
commit 4de22be56e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,3 +41,13 @@ a:hover {
border: 4px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
}
/* Remove autofill background color - matches react-zen TextField structure */
.TextField_field__YzU1O input:-webkit-autofill,
.TextField_field__YzU1O input:-webkit-autofill:hover,
.TextField_field__YzU1O input:-webkit-autofill:focus,
.TextField_field__YzU1O input:-webkit-autofill:active {
-webkit-box-shadow: 0 0 0px 1000px var(--background-color) inset !important;
-webkit-text-fill-color: var(--font-color) !important;
transition: background-color 5000s ease-in-out 0s;
}