From baad364b04dc44303b52c407e8eb9b58cebd28d5 Mon Sep 17 00:00:00 2001 From: hristoterezov Date: Fri, 28 Oct 2016 12:39:25 -0500 Subject: [PATCH] fix(Toolbar): Both toolbars are displayed in the same time --- css/_toolbars.scss | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/css/_toolbars.scss b/css/_toolbars.scss index 81c4d69c8..c09cd3c7e 100644 --- a/css/_toolbars.scss +++ b/css/_toolbars.scss @@ -274,11 +274,10 @@ a.button>#avatar { /** * START of fade in animation for main toolbar */ - .fadeIn { - @include animation('fadeIn .3s forwards'); + @include animation('fadeIn .3s linear .2s forwards'); } .fadeOut { - @include animation('fadeOut .3s forwards'); -} \ No newline at end of file + @include animation('fadeOut .5s linear forwards'); +}