From cd1d6b58a489cb4440309f389c38a8c2f51eee29 Mon Sep 17 00:00:00 2001 From: Felipe da Silva Date: Fri, 2 Mar 2018 00:12:16 -0300 Subject: [PATCH] fix: remove prefixeds --- Animated-loading-animation.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Animated-loading-animation.md b/Animated-loading-animation.md index 3b3e14bf4..6481d0105 100644 --- a/Animated-loading-animation.md +++ b/Animated-loading-animation.md @@ -27,24 +27,21 @@ Clean & simple animated loading animation with CSS3. If you are worried about su background: black; border-radius: 50px; animation: loader 0.9s infinite alternate; - animation: loader 0.9s infinite alternate; } .snippet-demo__Animated-loading-animation span:nth-of-type(2) { animation-delay: 0.3s; - animation-delay: 0.3s; } .snippet-demo__Animated-loading-animation span:nth-of-type(3) { animation-delay: 0.6s; - animation-delay: 0.6s; } @keyframes loader { 0% { opacity: 0.9; - -webkit-transform: translateY(0); + transform: translateY(0); } 100% { opacity: 0.1; - -webkit-transform: translateY(-21px); + transform: translateY(-21px); } } ```