fix skeleton size fix margin

This commit is contained in:
2025-10-11 23:41:15 +02:00
parent 0d04d827c2
commit 9668eccfe1
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
<UCard
v-if="!expanded"
:ui="{ body: 'p-0 sm:p-0', root: 'overflow-visible' }"
class="relative h-[350px] mt-2"
class="relative h-[350px] mt-2 mb-2"
@click="$emit('click')">
<MangaCover :manga="manga" blur />
<div class="absolute -top-4 -right-4 flex flex-col bg-pink rounded-full">

View File

@@ -1,6 +1,6 @@
<template>
<UPageBody class="p-4 flex flex-row flex-wrap gap-6 mt-0">
<USkeleton v-if="status !== 'success'" class="max-w-[600px] w-full h-[350px]" />
<USkeleton v-if="status !== 'success'" class="w-[240px] h-[350px]" />
<MangaCard
v-for="(m, i) in manga"
v-else