Fix black background issue on Board and Member portal pages
Build And Push Image / docker (push) Successful in 1m52s Details

- Added board-dashboard class wrapper to Board pages (Governance, Meetings, Members)
- Added member-dashboard class wrapper to Member pages (Events, Profile, Resources)
- All pages now properly display the light gradient background matching admin dashboard

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Matt 2025-09-04 23:06:38 +02:00
parent 9800245b7e
commit 64dbc78569
6 changed files with 12 additions and 8 deletions

View File

@ -1,5 +1,6 @@
<template>
<v-container fluid>
<div class="board-dashboard">
<v-container fluid>
<!-- Header -->
<v-row class="mb-6">
<v-col>
@ -200,7 +201,8 @@
</v-card-actions>
</v-card>
</v-dialog>
</v-container>
</v-container>
</div>
</template>
<script setup lang="ts">

View File

@ -1,5 +1,6 @@
<template>
<v-container fluid>
<div class="board-dashboard">
<v-container fluid>
<!-- Header -->
<v-row class="mb-6">
<v-col>
@ -187,7 +188,8 @@
</v-card-actions>
</v-card>
</v-dialog>
</v-container>
</v-container>
</div>
</template>
<script setup lang="ts">

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="board-dashboard">
<!-- Header -->
<div class="mb-6">
<div class="d-flex justify-space-between align-center">

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="member-dashboard">
<!-- Header -->
<div class="mb-6">
<h1 class="text-h4 font-weight-bold mb-2">Events</h1>

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="member-dashboard">
<!-- Header -->
<div class="mb-6">
<h1 class="text-h4 font-weight-bold mb-2">My Profile</h1>

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="member-dashboard">
<!-- Header -->
<div class="mb-6">
<h1 class="text-h4 font-weight-bold mb-2">Resources</h1>