💄 增加清晰度

This commit is contained in:
目棃
2025-01-09 09:55:38 +08:00
parent b7f9d083e7
commit e7bd815b08

View File

@@ -2,7 +2,7 @@
<v-list class="top-nc-box" @click="emit('selected', props.data)"> <v-list class="top-nc-box" @click="emit('selected', props.data)">
<v-list-item :title="props.data.name"> <v-list-item :title="props.data.name">
<template #subtitle> <template #subtitle>
<span :title="props.data.desc">{{ props.data.desc }}</span> <span class="desc" :title="props.data.desc">{{ props.data.desc }}</span>
</template> </template>
<template #prepend> <template #prepend>
<v-img <v-img
@@ -42,4 +42,8 @@ const bgImage = computed<string>(() => {
cursor: pointer; cursor: pointer;
font-family: var(--font-title); font-family: var(--font-title);
} }
.desc {
text-shadow: 1px 1px 1px #222;
}
</style> </style>