Fix manga withtag page layout

This commit is contained in:
2025-10-14 19:45:00 +02:00
parent 7f9d182cc3
commit a622c7c45a

View File

@@ -1,9 +1,11 @@
<template> <template>
<LoadingPage :loading="status === 'pending'" class="p-4 flex flex-row flex-wrap gap-6 mt-0"> <LoadingPage :loading="status === 'pending'" class="p-4">
<UButton variant="soft" to="/" icon="i-lucide-arrow-left">Home</UButton> <div class="flex flex-row gap-4">
<h1 class="text-2xl"> <UButton variant="soft" to="/" icon="i-lucide-arrow-left">Home</UButton>
Manga with Tag <span class="text-primary font-semibold">{{ tag }}</span> <h1 class="text-2xl">
</h1> Manga with Tag <UBadge variant="outline" class="text-primary font-semibold text-xl">{{ tag }}</UBadge>
</h1>
</div>
<MangaCardList :manga="manga" /> <MangaCardList :manga="manga" />
</LoadingPage> </LoadingPage>
</template> </template>