From 6c50d0f2ffff978c7066a37284b0e660b607a4b2 Mon Sep 17 00:00:00 2001 From: Amir Ajorloo Date: Mon, 7 Dec 2020 13:05:26 +0330 Subject: [PATCH] Fix closing sidemenu issue. (#5703) --- src/app/frontend/chrome/nav/style.scss | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/frontend/chrome/nav/style.scss b/src/app/frontend/chrome/nav/style.scss index 5dc87dd6d..ec85473a6 100644 --- a/src/app/frontend/chrome/nav/style.scss +++ b/src/app/frontend/chrome/nav/style.scss @@ -19,21 +19,21 @@ height: 100%; width: $nav-width + 8px; + &.visible { + transition: width .3s; + } + + &.hidden { + transition: width .2s; + width: 0; + } + .kd-nav { background-color: transparent; font-size: $body-font-size-base; overflow-y: auto; white-space: nowrap; - &.visible { - transition: width .3s; - } - - &.hidden { - transition: width .2s; - width: 0; - } - .kd-nav-items { padding: $content-padding 3px $content-padding $content-padding; -- GitLab