优化 NavbarThemeSwitcher 组件,更新主题图标为水平渐变,以提升视觉一致性。同时,调整 ShortcutBar 组件中的图标颜色为主色,增强用户体验。

This commit is contained in:
jxxghp
2025-04-19 17:40:39 +08:00
parent 2b0564211d
commit 0987ba3575
2 changed files with 2 additions and 2 deletions
@@ -25,7 +25,7 @@ const themes: ThemeSwitcherTheme[] = [
{ {
name: 'transparent', name: 'transparent',
title: '透明', title: '透明',
icon: 'mdi-gradient-vertical', icon: 'mdi-gradient-horizontal',
}, },
] ]
</script> </script>
+1 -1
View File
@@ -178,7 +178,7 @@ onMounted(() => {
@click="openDialog(item.dialogRef)" @click="openDialog(item.dialogRef)"
> >
<VAvatar variant="tonal" size="48" class="me-4" rounded="lg"> <VAvatar variant="tonal" size="48" class="me-4" rounded="lg">
<VIcon :icon="item.icon" size="24" /> <VIcon color="primary" :icon="item.icon" size="24" />
</VAvatar> </VAvatar>
<div> <div>
<div class="text-body-1 text-high-emphasis font-weight-medium">{{ item.title }}</div> <div class="text-body-1 text-high-emphasis font-weight-medium">{{ item.title }}</div>