优化 SubscribeCard 组件的样式,调整文本和图标的大小,增强可读性

This commit is contained in:
jxxghp
2025-05-23 07:15:30 +08:00
parent e90b30bf63
commit 78688ab63c

View File

@@ -369,16 +369,17 @@ function onSubscribeEditRemove() {
<div class="flex align-center">
<IconBtn
v-if="props.media?.total_episode"
size="small"
v-bind="props"
icon="mdi-progress-download"
color="white"
/>
<div v-if="props.media?.season" class="text-sm me-2 text-white">
<div v-if="props.media?.season" class="text-subtitle-2 me-2 text-white">
{{ (props.media?.total_episode || 0) - (props.media?.lack_episode || 0) }} /
{{ props.media?.total_episode }}
</div>
<IconBtn v-if="props.media?.username" icon="mdi-account" color="white" />
<span v-if="props.media?.username" class="text-sm text-white">
<IconBtn v-if="props.media?.username" icon="mdi-account" size="small" color="white" />
<span v-if="props.media?.username" class="text-subtitle-2 text-white">
{{ props.media?.username }}
</span>
</div>