1
0
mirror of https://github.com/vercel/commerce.git synced 2025-03-17 16:02:33 +00:00
commerce/assets/chrome-bug.css

13 lines
324 B
CSS

/**
* Chrome has a bug with transitions on load since 2012!
*
* To prevent a "pop" of content, you have to disable all transitions until
* the page is done loading.
*
* https://lab.laukstein.com/bug/input
* https://twitter.com/timer150/status/1345217126680899584
*/
body.loading * {
transition: none !important;
}