mirror of
https://github.com/vercel/commerce.git
synced 2025-08-13 12:21:24 +00:00
assets
base.css
chrome-bug.css
components.css
main.css
components
config
docs
framework
lib
pages
public
.editorconfig
.env.template
.gitignore
.prettierignore
README.md
codegen.json
global.d.ts
license.md
next-env.d.ts
next.config.js
package.json
postcss.config.js
tailwind.config.js
tsconfig.json
yarn.lock
13 lines
324 B
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;
|
|
}
|