From 5969049de191b348a898198a2ce6926424f00137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xavier=20Juli=C3=A1n?= Date: Fri, 30 Jan 2015 07:43:56 +0100 Subject: [PATCH] Removed unnecesary vendor prefixes --- app/styles/layout/animation.scss | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/app/styles/layout/animation.scss b/app/styles/layout/animation.scss index e47897df..978ec66b 100644 --- a/app/styles/layout/animation.scss +++ b/app/styles/layout/animation.scss @@ -1,5 +1,5 @@ //Loading -@include keyframes(loading) { +@keyframes loading { 0% { filter: blur(5px); opacity: 0; @@ -10,21 +10,14 @@ } } -//Spin -@-webkit-keyframes rotate { +@keyframes rotate { 50% { filter: invert(1); transform: rotate(360deg); } } -@keyframes rotate { - 50% { - transform: rotate(360deg); - } -} - -@include keyframes(formSlide) { +@keyframes formSlide { 0% { filter: blur(5px); opacity: 0; @@ -40,7 +33,7 @@ } //Bar loading -@include keyframes(loadBar) { +@keyframes loadBar { 0% { flex: 1; }