From 205fdc6bed55e667617a82d918e15ab5367265ea Mon Sep 17 00:00:00 2001 From: Juanfran Date: Mon, 12 Jan 2015 13:37:56 +0100 Subject: [PATCH] fix 1857 - performance issue repainting continuosly --- app/styles/components/loader.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/styles/components/loader.scss b/app/styles/components/loader.scss index d7111242..41b0365d 100644 --- a/app/styles/components/loader.scss +++ b/app/styles/components/loader.scss @@ -1,6 +1,7 @@ .loader { background-color: $white; bottom: 0; + display: none; height: 100%; left: 0; opacity: 0; @@ -22,6 +23,7 @@ text-align: center; } &.active { + display: block; background-color: rgba($white, .95); opacity: 1; z-index: 99900;