Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.

Commit 72e15f7

Browse files
committed
fix: cover
1 parent 8ef76ce commit 72e15f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

components/Character/Item.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const thumbnail = computed(() => {
4848
v-if="thumbnail"
4949
:src="thumbnail"
5050
:alt="data?.name"
51-
class="aspect-4/6 min-h-36 w-24"
51+
class="aspect-4/6 min-h-36 w-24 object-cover"
5252
/>
5353
</div>
5454
<p class="text-xl">

components/Event/DataRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ const showDescription = inject('show-description', ref(false))
8383
v-if="thumbnail"
8484
:src="thumbnail"
8585
:alt="data?.title"
86-
class="size-36"
86+
class="size-36 object-cover"
8787
/>
8888
</div>
8989
<div>{{ data?.description }}</div>

0 commit comments

Comments
 (0)