From fc3d2cb20da4e4c65080bfcf362504fd28a5b28f Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Sun, 5 Feb 2017 11:47:42 +0800 Subject: [PATCH] Remove vendor prefixes --- app/styles/components/_loading-spinner.scss | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/styles/components/_loading-spinner.scss b/app/styles/components/_loading-spinner.scss index b9ce28b..17ed468 100644 --- a/app/styles/components/_loading-spinner.scss +++ b/app/styles/components/_loading-spinner.scss @@ -1,6 +1,6 @@ @keyframes pulse { from { - opacity: 0.2; + opacity: 0.1; } to { opacity: 0.6; @@ -24,13 +24,13 @@ #path-comet { fill: lightblue; - opacity: 0.6; + opacity: 0.1; - -moz-animation-name: pulse; - -moz-animation-iteration-count: infinite; - -moz-animation-timing-function: ease-in-out; - -moz-animation-direction: alternate; - -moz-animation-duration: 1s; + animation-name: pulse; + animation-iteration-count: infinite; + animation-timing-function: ease-in-out; + animation-direction: alternate; + animation-duration: 1s; } } }