Fix small-screen layout issues for Home tables and sidebar images
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m1s

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 02:54:49 +00:00
parent 570a823426
commit 7d74a2fc07
2 changed files with 6 additions and 3 deletions

View File

@@ -22,7 +22,7 @@ const show = ref(false);
</script>
<template>
<div v-if="title" class="h-fit w-fit">
<div v-if="title" class="h-fit w-full">
<ToggleHeader v-model="show" class="justify-between flex">
{{ title }}
</ToggleHeader>
@@ -35,7 +35,7 @@ const show = ref(false);
>
<p class="bdr-2 bg-bg_tertiary">{{ item.name }}</p>
</Link>
<table v-else>
<table class="w-full" v-else>
<tbody>
<tr v-for="item in items" :key="item.id">
<th>{{ item.type }}</th>
@@ -58,7 +58,7 @@ const show = ref(false);
<p class="bdr-2 bg-bg_tertiary">{{ item.name }}</p>
</Link>
</template>
<table v-else>
<table class="w-full" v-else>
<tbody>
<tr v-for="item in items" :key="item.id">
<th>{{ item.type }}</th>