mirror of
https://github.com/jxxghp/MoviePilot-Frontend.git
synced 2026-09-07 00:36:41 +08:00
fix size
This commit is contained in:
@@ -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,
|
||||||
}"
|
}"
|
||||||
|
|||||||
@@ -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">
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user