Add Edge browser compatibility for dashboard backgrounds
Build And Push Image / docker (push) Successful in 1m53s Details

- Added background-color fallback for browsers without gradient support
- Split background property for better cross-browser compatibility
- Ensures Edge and other browsers display light background correctly

🤖 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:18:20 +02:00
parent 64dbc78569
commit 1162d0c9ca
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,8 @@
.member-dashboard {
padding: 2rem;
min-height: 100vh;
background-color: #fafafa; // Fallback for browsers that don't support gradients
background-image: linear-gradient(135deg, #fafafa 0%, #f4f4f5 100%);
background: linear-gradient(135deg, #fafafa 0%, #f4f4f5 100%);
@media (max-width: 768px) {