_hacks.scss 398 B

1234567891011
  1. // <3: https://medium.com/@brunn/detecting-autofilled-fields-in-javascript-aed598d25da7
  2. // sass-lint:disable no-empty-rulesets
  3. @keyframes onAutoFillStart { from {/**/} to {/**/}}
  4. @keyframes onAutoFillCancel { from {/**/} to {/**/}}
  5. input:-webkit-autofill {
  6. animation-name: onAutoFillStart;
  7. transition: transform 1ms;
  8. }
  9. input:not(:-webkit-autofill) {
  10. animation-name: onAutoFillCancel;
  11. }