优化卡片组件样式

This commit is contained in:
jxxghp
2025-07-10 22:00:06 +08:00
parent bc1849f0a0
commit 6691f40c49
11 changed files with 30 additions and 20 deletions

View File

@@ -49,7 +49,7 @@ onActivated(() => {
<SlideView v-if="componentLoaded">
<template #content>
<template v-for="data in dataList" :key="data.tmdb_id || data.douban_id || data.bangumi_id">
<MediaCard :media="data" height="15rem" width="10rem" />
<MediaCard :media="data" width="8rem" />
</template>
</template>
</SlideView>

View File

@@ -39,7 +39,7 @@ onMounted(fetchData)
<SlideView v-if="componentLoaded">
<template #content>
<template v-for="data in dataList" :key="data.id">
<PersonCard :person="data" height="15rem" width="10rem" />
<PersonCard :person="data" width="8rem" />
</template>
</template>
</SlideView>