This commit is contained in:
2025-10-12 01:01:23 +02:00
parent 517e022e4a
commit d933a1b437
10 changed files with 46 additions and 25 deletions

View File

@@ -14,7 +14,7 @@
<MangaCard v-if="target" :manga="target" :expanded="true" />
<USkeleton v-else class="max-w-[600px] w-full h-[350px]" />
</div>
<p>This action is irreversible!</p>
<p class="text-warning">This action is irreversible!</p>
<UButton color="warning" class="w-fit">Merge</UButton>
</UPageBody>
</template>

View File

@@ -1,11 +1,11 @@
<template>
<UPageBody>
<UPageHeader class="text-3xl px-4"
>Merge <span v-if="manga">{{ manga.name }}</span
><USkeleton v-else as="span" class="w-60 h-lh" /> into</UPageHeader
>Merge <span v-if="manga" class="italic text-secondary">{{ manga.name }}</span
><USkeleton v-else as="span" class="w-60 h-lh" /> with</UPageHeader
>
<UPageBody class="p-4 flex flex-row flex-wrap gap-6 mt-0">
<NuxtLink v-for="m in mangas" :key="m.key" :to="`/manga/${m.key}`">
<NuxtLink v-for="m in mangas" :key="m.key" :to="m.key">
<MangaCard :manga="m" />
</NuxtLink>
</UPageBody>