fix:优化页面

This commit is contained in:
2025-11-12 16:04:50 +08:00
parent 34cb51e037
commit f5d241a759
5 changed files with 96 additions and 9 deletions

View File

@@ -10,7 +10,10 @@ const showAppShell = computed(() => !route.path.startsWith('/auth'));
<template>
<div class="min-h-screen bg-gray-100 text-gray-900">
<div class="max-w-sm mx-auto min-h-screen relative pb-24 w-full">
<div
class="max-w-sm mx-auto min-h-screen relative w-full"
:class="showAppShell ? 'pb-24' : 'pb-0'"
>
<RouterView />
<QuickAddButton v-if="showAppShell" />
</div>