lisamiltonbayer
11/15/2017 - 12:22 PM

CSS - Autofill Class Override

CSS - Autofill Class Override

@-webkit-keyframes autofill {
    to {
        color: #ffffff;
        background-color: rgba(255,255,255,0.1);
    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}