fix: sidebar toggle button icon direction

This commit is contained in:
Ramesh Mane
2026-04-01 12:50:39 +00:00
parent 05cbbad55f
commit efd215e6e9
6 changed files with 36 additions and 17 deletions

View File

@@ -83,9 +83,9 @@ const showSidebarBtn = computed(() => {
<GeneralIcon
v-else
icon="doubleLeftArrow"
class="duration-150 transition-all !text-lg -mt-0.5 !text-nc-content-gray-muted bg-opacity-50"
class="duration-150 transition-all !text-lg -mt-0.5 !text-nc-content-gray-muted bg-opacity-50 transform rtl:rotate-180"
:class="{
'transform rotate-180': !isLeftSidebarOpen,
'rotate-180 rtl:rotate-0': !isLeftSidebarOpen,
}"
/>
</div>