fix(nc-gui): sidebar related style update

This commit is contained in:
Ramesh Mane
2025-08-14 10:23:01 +00:00
parent 1c51f67c4d
commit e2cc53a2ad
6 changed files with 18 additions and 14 deletions

View File

@@ -51,7 +51,7 @@ const showSidebarBtn = computed(() => !(isMobileMode.value && !activeViewTitleOr
v-e="['c:leftSidebar:hideToggle']"
:type="isMobileMode ? 'secondary' : 'text'"
:size="isMobileMode ? 'medium' : 'small'"
class="nc-sidebar-left-toggle-icon !text-gray-700 !hover:text-gray-800 !xs:(h-10.5 max-h-10.5 max-w-10.5) !md:(hover:bg-gray-200) !rounded-md"
class="nc-sidebar-left-toggle-icon !text-nc-content-gray-subtle !hover:text-nc-content-gray !xs:(h-10.5 max-h-10.5 max-w-10.5) !md:(hover:bg-nc-bg-gray-medium) !rounded-md"
@click="isLeftSidebarOpen = !isLeftSidebarOpen"
>
<div class="flex items-center text-inherit">
@@ -59,7 +59,7 @@ const showSidebarBtn = computed(() => !(isMobileMode.value && !activeViewTitleOr
<GeneralIcon
v-else
icon="doubleLeftArrow"
class="duration-150 transition-all !text-lg -mt-0.5 !text-gray-500/75"
class="duration-150 transition-all !text-lg -mt-0.5 !text-nc-content-gray-muted bg-opacity-50"
:class="{
'transform rotate-180': !isLeftSidebarOpen,
}"