Made sidebar image smaller

This commit is contained in:
Alexis
2025-07-29 21:59:36 +02:00
parent 693f506610
commit 300507bbed
7 changed files with 259 additions and 9 deletions

View File

@@ -15,7 +15,7 @@ watch(locale, () => refresh())
<Title>{{ $t("pages.about.title") }}</Title>
</Head>
<main class="container overflow-y-auto py-8 px-5 md:px-8 grid gap-4 grid-rows-[auto_1fr]">
<main class="overflow-y-auto py-8 px-5 md:px-8 grid gap-4 grid-rows-[auto_1fr]">
<div class="flex items-center gap-3">
<div class="md:hidden">
<SidebarToggle />
@@ -30,6 +30,6 @@ watch(locale, () => refresh())
<PhCircleNotch size="50" class="opacity-33 animate-spin"/>
</div>
<LazyContentRenderer v-else-if="status === 'success' && page" :value="page" class="content" />
<LazyContentRenderer v-else-if="status === 'success' && page" :value="page" class="content max-w-5xl" />
</main>
</template>