fix: mobile UI (#2569)

* improve mobile ui

* general cleanup

* cleanup, improvements

* fix hydration mismatch
This commit is contained in:
Bernd Storath
2026-04-07 11:34:49 +02:00
committed by GitHub
parent b5c30f5dbe
commit cd9db1563d
24 changed files with 97 additions and 100 deletions
+6 -4
View File
@@ -1,7 +1,9 @@
<template>
<div
class="container mx-auto max-w-3xl overflow-hidden rounded-lg bg-white px-3 text-gray-700 shadow-md md:px-0 dark:bg-neutral-700 dark:text-neutral-200"
>
<slot />
<div class="container mx-auto max-w-3xl">
<div
class="mx-3 overflow-hidden rounded-lg bg-white text-gray-700 shadow-md dark:bg-neutral-700 dark:text-neutral-200"
>
<slot />
</div>
</div>
</template>