less spacing on mobile

This commit is contained in:
2025-10-17 01:16:40 +02:00
parent 5e88742597
commit 915f75247e
2 changed files with 3 additions and 3 deletions

View File

@@ -9,8 +9,8 @@
:root { :root {
--mangacover-width: 240px; --mangacover-width: 240px;
--mangacover-height: 350px; --mangacover-height: 350px;
--mangacover-width-sm: 180px; --mangacover-width-sm: 150px;
--mangacover-height-sm: 260px; --mangacover-height-sm: 220px;
} }
@keyframes shake { @keyframes shake {

View File

@@ -1,6 +1,6 @@
<template> <template>
<LoadingPage :loading="status === 'pending'"> <LoadingPage :loading="status === 'pending'">
<MangaCardList :manga="manga" class="mx-4 mt-2" @click="(m) => navigateTo(`/manga/${m.key}`)" /> <MangaCardList :manga="manga" class="min-md:mx-4 max-md:mx-0 mt-2" @click="(m) => navigateTo(`/manga/${m.key}`)" />
</LoadingPage> </LoadingPage>
</template> </template>