Styling of Manga-detail-page

This commit is contained in:
2025-10-13 19:34:56 +02:00
parent 189e5b8f17
commit 925eda2bc9
3 changed files with 20 additions and 12 deletions

View File

@@ -1,8 +1,15 @@
<template>
<MangaDetailPage :manga="manga">
<ChaptersList v-if="manga" :manga-id="manga.key" />
<div class="grid gap-3 grid-cols-[70%_30%]">
<ChaptersList v-if="manga" :manga-id="manga.key" />
<UCard>
<template #header>
<h1>Download</h1>
</template>
<LibrarySelect :manga-id="mangaId" :library-id="libraryId" />
</UCard>
</div>
<template #actions>
<LibrarySelect :library-id="libraryId" />
<UButton variant="soft" color="warning" icon="i-lucide-trash" />
</template>
</MangaDetailPage>