From 4acae04d96a5974af51dc8e89cfeaaf563b1e62f Mon Sep 17 00:00:00 2001 From: Roman Hotsiy Date: Sun, 7 Feb 2016 16:11:58 +0200 Subject: [PATCH] Animate loading message --- lib/components/Redoc/redoc.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/components/Redoc/redoc.js b/lib/components/Redoc/redoc.js index 2a000ca1..ddf5ce26 100644 --- a/lib/components/Redoc/redoc.js +++ b/lib/components/Redoc/redoc.js @@ -93,6 +93,14 @@ export default class Redoc extends BaseComponent { position: relative; display: block; min-height:350px; + animation: 2s move linear infinite; + } + + @keyframes move { + 0% {transform: translateY(0px)} + 25% {transform: translateY(-10px)} + 50% {transform: translateY(0px)} + 75% {transform: translateY(10px)} } redoc.loading:before {