style: update card background colors in templates

This commit is contained in:
Jan-Marlon Leibl 2025-03-26 13:32:16 +01:00
parent a639888a33
commit 5e5fe603f9
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ import { Card } from '../../models/card.model';
template: ` template: `
<div class="space-y-4"> <div class="space-y-4">
<h3 class="section-heading text-2xl mb-4">Croupier's Karten</h3> <h3 class="section-heading text-2xl mb-4">Croupier's Karten</h3>
<div class="card p-6 !bg-red-500"> <div class="card p-6 !bg-accent-red">
<div class="flex justify-center gap-4 min-h-[160px] p-4 border-2 border-red-400 rounded-lg"> <div class="flex justify-center gap-4 min-h-[160px] p-4 border-2 border-red-400 rounded-lg">
<app-playing-card <app-playing-card
*ngFor="let card of cards" *ngFor="let card of cards"

View file

@ -10,9 +10,9 @@ import { Card } from '../../models/card.model';
template: ` template: `
<div class="space-y-4"> <div class="space-y-4">
<h3 class="section-heading text-2xl mb-4">Deine Karten</h3> <h3 class="section-heading text-2xl mb-4">Deine Karten</h3>
<div class="card p-6 !bg-green-500"> <div class="card p-6 !bg-emerald">
<div <div
class="flex justify-center gap-4 min-h-[160px] p-4 border-2 border-green-400 rounded-lg" class="flex justify-center gap-4 min-h-[160px] p-4 border-2 border-emerald-400 rounded-lg"
> >
<app-playing-card <app-playing-card
*ngFor="let card of cards" *ngFor="let card of cards"