Avoid CSS globals (#220)

This commit is contained in:
Héliton Nordt
2016-07-26 13:49:29 -03:00
committed by Christopher Chedeau
parent 4ca7b0da06
commit 591fbbfa59

View File

@@ -3,7 +3,7 @@
}
.App-logo {
animation: spin infinite 20s linear;
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
@@ -18,7 +18,7 @@
font-size: large;
}
@keyframes spin {
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}