We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using create-react-app and it has a spinning logo as the demo page.
Expected Behavior CSS animation causes image to rotate in window mode.
window
Actual Behavior Image doesn't rotate while in window mode. It rotates correctly when in browser mode.
browser
Steps to Reproduce the Problem
neu run
.App-logo { height: 40vmin; pointer-events: none; } @media (prefers-reduced-motion: no-preference) { .App-logo { animation: App-logo-spin infinite 20s linear; } } @keyframes App-logo-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } <img src={logo} className="App-logo" alt="logo" />
Specifications
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using create-react-app and it has a spinning logo as the demo page.
Expected Behavior
CSS animation causes image to rotate in
window
mode.Actual Behavior
Image doesn't rotate while in
window
mode. It rotates correctly when inbrowser
mode.Steps to Reproduce the Problem
neu run
Specifications
The text was updated successfully, but these errors were encountered: