Browse Source

fix(nc-gui): Fixed sidebar hidden issue

pull/6636/head
Muhammed Mustafa 1 year ago
parent
commit
71205efe90
  1. 3
      packages/nc-gui/components/dashboard/View.vue

3
packages/nc-gui/components/dashboard/View.vue

@ -140,7 +140,7 @@ onMounted(() => {
>
<div
ref="wrapperRef"
class="nc-sidebar-wrapper relative flex flex-col h-full justify-center !min-w-32 absolute overflow-visible"
class="nc-sidebar-wrapper relative flex flex-col h-full justify-center !min-w-12 absolute overflow-visible"
:class="{
'mobile': isMobileMode,
'minimized-height': !isLeftSidebarOpen,
@ -179,6 +179,7 @@ onMounted(() => {
> * {
@apply opacity-0;
z-index: -1 !important;
transform: translateX(-100%);
}
}

Loading…
Cancel
Save