chrome-bug.css 324 B

123456789101112
  1. /**
  2. * Chrome has a bug with transitions on load since 2012!
  3. *
  4. * To prevent a "pop" of content, you have to disable all transitions until
  5. * the page is done loading.
  6. *
  7. * https://lab.laukstein.com/bug/input
  8. * https://twitter.com/timer150/status/1345217126680899584
  9. */
  10. body.loading * {
  11. transition: none !important;
  12. }