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
In src/App.css we have the @keyframes spin rule:
src/App.css
@keyframes spin
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
Wouldn't best to rename spin to App-logo-spin? That way we teach newcomers to avoid "CSS globals" for everything.
spin
App-logo-spin
I mean, @keyframes spin is a good candidate to be added in many component's CSS file.
The text was updated successfully, but these errors were encountered:
👍 want to send a pull request?
Sorry, something went wrong.
@vjeux sure, doing it now.
No branches or pull requests
In
src/App.css
we have the@keyframes spin
rule:Wouldn't best to rename
spin
toApp-logo-spin
? That way we teach newcomers to avoid "CSS globals" for everything.I mean,
@keyframes spin
is a good candidate to be added in many component's CSS file.The text was updated successfully, but these errors were encountered: