feat(game): add blackjack game component and routing #92

Merged
jleibl merged 4 commits from task/CAS-49/add_base_styling_for_blackjack into main 2025-03-26 12:36:21 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 5e5fe603f9 - Show all commits

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"