This commit is contained in:
jxxghp
2025-07-11 07:06:46 +08:00
parent 97f5410b1c
commit 0f1341615b
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ function goPersonDetail() {
<div class="absolute inset-0 flex h-full w-full flex-col items-center p-2"> <div class="absolute inset-0 flex h-full w-full flex-col items-center p-2">
<div class="relative mt-2 mb-4 flex h-1/2 w-full justify-center"> <div class="relative mt-2 mb-4 flex h-1/2 w-full justify-center">
<VAvatar <VAvatar
size="90" size="100"
:class="{ :class="{
'ring-1 ring-gray-700': isImageLoaded, 'ring-1 ring-gray-700': isImageLoaded,
}" }"
+1 -1
View File
@@ -271,7 +271,7 @@ const resolveProgress = (item: Workflow) => {
</template> </template>
</VCardItem> </VCardItem>
<VDivider /> <VDivider />
<VCardText> <VCardText class="pa-3">
<div class="d-flex flex-column gap-y-2"> <div class="d-flex flex-column gap-y-2">
<div class="d-flex flex-wrap gap-x-3"> <div class="d-flex flex-wrap gap-x-3">
<div class="flex-1"> <div class="flex-1">
+1 -1
View File
@@ -182,7 +182,7 @@ body {
} }
.grid-media-card { .grid-media-card {
grid-template-columns: repeat(auto-fill, minmax(8rem, 1fr)); grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
} }
.grid-backdrop-card { .grid-backdrop-card {
+1 -1
View File
@@ -49,7 +49,7 @@ onActivated(() => {
<SlideView v-if="componentLoaded"> <SlideView v-if="componentLoaded">
<template #content> <template #content>
<template v-for="data in dataList" :key="data.tmdb_id || data.douban_id || data.bangumi_id"> <template v-for="data in dataList" :key="data.tmdb_id || data.douban_id || data.bangumi_id">
<MediaCard :media="data" width="8rem" /> <MediaCard :media="data" width="9rem" />
</template> </template>
</template> </template>
</SlideView> </SlideView>
+1 -1
View File
@@ -39,7 +39,7 @@ onMounted(fetchData)
<SlideView v-if="componentLoaded"> <SlideView v-if="componentLoaded">
<template #content> <template #content>
<template v-for="data in dataList" :key="data.id"> <template v-for="data in dataList" :key="data.id">
<PersonCard :person="data" width="8rem" /> <PersonCard :person="data" width="9rem" />
</template> </template>
</template> </template>
</SlideView> </SlideView>