mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 18:00:47 +02:00
Theming
This commit is contained in:
@@ -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>
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user