refactor: phase 4 cleanup — delete SidebarLayout, drop dashboard-body

Now that all member-area pages have migrated to PageShell +
ColumnsLayout, SidebarLayout has no consumers and can be deleted.
PageShell owns the flex chain, so the .dashboard-body wrapper on
member/dashboard.vue (flex: 1; display: flex; flex-direction: column;
min-height: 0) is redundant. Update stale SidebarLayout comments on
members/[id].vue to reference ColumnsLayout.
This commit is contained in:
Jennie Robinson Faber 2026-04-08 17:58:01 +01:00
parent 4a5b129eeb
commit 3b5b0d831d
3 changed files with 5 additions and 57 deletions

View file

@ -27,9 +27,8 @@
<!-- Dashboard Content -->
<template v-else>
<ColumnsLayout cols="events-sidebar" :limit="5">
<div class="dashboard-body">
<!-- Member Status Banner -->
<MemberStatusBanner />
<!-- Member Status Banner -->
<MemberStatusBanner />
<!-- Welcome Header -->
<PageHeader :title="`Welcome back, ${memberData?.name || ''}`">
@ -202,7 +201,6 @@
</DashedBox>
</div>
</div>
</div>
</ColumnsLayout>
</template>
@ -451,13 +449,6 @@ useHead({
margin-top: 8px;
}
.dashboard-body {
flex: 1;
display: flex;
flex-direction: column;
min-height: 0;
}
.content-row {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));