fix: use chevron-down icon and add rotation for collapsed state
- Replace non-existent chevron-right with chevron-down - Add rotate(-90deg) transform to collapsed state buttons - Fixes icon not showing when collapsed
This commit is contained in:
parent
c764fbfc55
commit
3d61e6c0ef
|
|
@ -23,7 +23,7 @@
|
|||
@click="toggleCollapseAll"
|
||||
:title="collapseAll ? 'Expand all subtasks' : 'Collapse all subtasks'"
|
||||
>
|
||||
<Icon :icon="collapseAll ? 'chevron-right' : 'chevron-down'" />
|
||||
<Icon icon="chevron-down" />
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
|
@ -406,6 +406,7 @@ onBeforeUnmount(() => {
|
|||
&.is-collapsed {
|
||||
color: var(--primary);
|
||||
border-color: var(--primary);
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue