Skip to content

Commit 27f89bd

Browse files
committed
fix(desk): menu sections color
1 parent f6c87b8 commit 27f89bd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/desktop/modules/layout/components/LDrawerItem.vue

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ const show = computed(() => !hideSections.value.includes(props.item.id))
4444
>
4545
<v-btn
4646
class="w-[20px] h-[20px] mr-1 text-xs"
47-
text
48-
size="none"
47+
mode="text"
48+
size="sm"
4949
:class="[item.children.length && !item.isSection ? 'opacity-100' : 'opacity-0']"
5050
@click.prevent.stop="toggle"
5151
>
5252
<v-icon :name="show ? 'chevron-down' : 'chevron-right'" />
5353
</v-btn>
5454
<template v-if="item.isSection">
5555
<v-btn
56-
text
57-
size="px-2 -ml-2"
56+
mode="text"
57+
size="sm"
5858
color="hover:bg-b-primary/40"
59-
class="text-t-secondary font-bold"
59+
class="text-t-secondary font-bold -ml-4"
6060
@click="toggle"
6161
>
6262
{{ item.label }}

0 commit comments

Comments
 (0)