diff --git a/mvp/client/ui/src/api/generated/models/GameSessionDTO.ts b/mvp/client/ui/src/api/generated/models/GameSessionDTO.ts index d36224b..1666f88 100644 --- a/mvp/client/ui/src/api/generated/models/GameSessionDTO.ts +++ b/mvp/client/ui/src/api/generated/models/GameSessionDTO.ts @@ -15,4 +15,5 @@ export type GameSessionDTO = { game_over_reason?: (string | null); final_score?: (number | null); user_messages?: Record; + cash_multiplier?: number; }; diff --git a/mvp/client/ui/src/components/MachineData.svelte b/mvp/client/ui/src/components/MachineData.svelte index 74704f1..0b2c652 100644 --- a/mvp/client/ui/src/components/MachineData.svelte +++ b/mvp/client/ui/src/components/MachineData.svelte @@ -154,7 +154,12 @@ } .message-card.WARNING { - background-color: #ffffe0; /* Light yellow */ - color: #000000; /* Black */ + background-color: #ffffe0; + color: #000000; + } + + .message-card.INFO { + background-color: rgba(129, 248, 94, 0.86); + color: #000000; } diff --git a/mvp/client/ui/src/components/SessionData.svelte b/mvp/client/ui/src/components/SessionData.svelte index 1cfaec4..88d963e 100644 --- a/mvp/client/ui/src/components/SessionData.svelte +++ b/mvp/client/ui/src/components/SessionData.svelte @@ -1,6 +1,6 @@