Fix Mangaanames in lightmode being unreadable

This commit is contained in:
2025-10-13 19:16:17 +02:00
parent 6a16288856
commit a6c8139982
2 changed files with 2 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
</template> </template>
<template #leading> <template #leading>
<p class="mr-1">Downloaded:</p> <p class="mr-1">Downloaded:</p>
<Icon v-if="chapter.downloaded" name="i-lucide-circle-check-big" class="stroke-green-500" /> <Icon v-if="chapter.downloaded" name="i-lucide-circle-check-big" />
<Icon v-else name="i-lucide-circle-x" /> <Icon v-else name="i-lucide-circle-x" />
</template> </template>
<template #footer> <template #footer>

View File

@@ -9,7 +9,7 @@
backdrop-filter: blur(2px) brightness(70%); backdrop-filter: blur(2px) brightness(70%);
-webkit-backdrop-filter: blur(2px) brightness(70%); -webkit-backdrop-filter: blur(2px) brightness(70%);
"> ">
<p class="p-3 text-xl font-semibold max-h-full overflow-clip text-shadow-lg">{{ manga?.name }}</p> <p class="p-3 text-xl font-semibold max-h-full overflow-clip text-shadow-lg text-white">{{ manga?.name }}</p>
</div> </div>
<LazyNuxtImg <LazyNuxtImg
:src="`${$config.public.openFetch.api.baseURL}v2/Manga/${manga.key}/Cover/Medium`" :src="`${$config.public.openFetch.api.baseURL}v2/Manga/${manga.key}/Cover/Medium`"