From f58a17d4d7267f528c41e57f55e54d137e3bf187 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9liton=20Nordt?= Date: Tue, 26 Jul 2016 13:42:21 -0300 Subject: [PATCH] Avoid CSS globals --- template/src/App.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/src/App.css b/template/src/App.css index e9e6b88ac0b..15adfdc710c 100644 --- a/template/src/App.css +++ b/template/src/App.css @@ -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); } }