From e722d9e26bb394dfd44a588d1511402db37ab44a Mon Sep 17 00:00:00 2001 From: Bastian Wagner Date: Fri, 31 Jul 2026 22:28:57 +0200 Subject: [PATCH] css --- .../src/app/features/public-team/public-team.scss | 9 ++++++++- .../src/app/features/team/cashbox/cashbox.scss | 11 ++++++++++- .../src/app/features/team/overview/overview.scss | 12 ++++++++++-- 3 files changed, 28 insertions(+), 4 deletions(-) diff --git a/myteamwallet_frontend_modern/src/app/features/public-team/public-team.scss b/myteamwallet_frontend_modern/src/app/features/public-team/public-team.scss index c429927..def7521 100644 --- a/myteamwallet_frontend_modern/src/app/features/public-team/public-team.scss +++ b/myteamwallet_frontend_modern/src/app/features/public-team/public-team.scss @@ -54,7 +54,14 @@ main { font-size: clamp(1.45rem, 3vw, 2rem); } .balance-grid .total { - background: var(--mat-sys-primary-container); + background: linear-gradient( + 135deg, + #5ca34c 0%, + #4f8f46 55%, + #3f7f3c 100% + ); + + color: #ffffff; } .content-grid { display: grid; diff --git a/myteamwallet_frontend_modern/src/app/features/team/cashbox/cashbox.scss b/myteamwallet_frontend_modern/src/app/features/team/cashbox/cashbox.scss index 8c72ecb..0599661 100644 --- a/myteamwallet_frontend_modern/src/app/features/team/cashbox/cashbox.scss +++ b/myteamwallet_frontend_modern/src/app/features/team/cashbox/cashbox.scss @@ -30,12 +30,21 @@ h1 { margin-bottom: 6px; } .balance { - background: var(--mat-sys-primary-container); + // background: var(--mat-sys-primary-container); border-radius: 18px; padding: 16px 22px; display: grid; gap: 4px; min-width: 160px; + + background: linear-gradient( + 135deg, + #5ca34c 0%, + #4f8f46 55%, + #3f7f3c 100% + ); + + color: #ffffff; } .balance strong { font-size: 1.5rem; diff --git a/myteamwallet_frontend_modern/src/app/features/team/overview/overview.scss b/myteamwallet_frontend_modern/src/app/features/team/overview/overview.scss index b7aa8dc..a360d60 100644 --- a/myteamwallet_frontend_modern/src/app/features/team/overview/overview.scss +++ b/myteamwallet_frontend_modern/src/app/features/team/overview/overview.scss @@ -42,8 +42,16 @@ h2 { color: var(--mat-sys-on-surface-variant); } .balance-card--primary { - background: var(--mat-sys-primary-container); - color: var(--mat-sys-on-primary-container); + // background: var(--mat-sys-primary-container); + // color: var(--mat-sys-on-primary-container); + background: linear-gradient( + 135deg, + #5ca34c 0%, + #4f8f46 55%, + #3f7f3c 100% + ); + + color: #ffffff; } .section-heading { margin-bottom: 0.75rem;