feat: amber top border for intermission games
All checks were successful
CI / Lint (push) Successful in 7s
CI / Test (push) Successful in 6s
CI / Build & Push (push) Successful in 15s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-29 14:10:02 -04:00
parent 3169d1a1ff
commit 62afc1001e
2 changed files with 5 additions and 1 deletions

View File

@@ -49,7 +49,7 @@ function renderLiveGame(game) {
</div>` : ''; </div>` : '';
return ` return `
<div class="game-box game-box-live"> <div class="game-box ${intermission ? 'game-box-intermission' : 'game-box-live'}">
<div class="card-header"> <div class="card-header">
<div class="badges"> <div class="badges">
${periodLabel} ${periodLabel}

View File

@@ -88,6 +88,10 @@ main {
border-top-color: var(--green-accent); border-top-color: var(--green-accent);
} }
.game-box-intermission {
border-top-color: #f59e0b;
}
/* ── Card Header (badges + live dot) ───────────── */ /* ── Card Header (badges + live dot) ───────────── */
.card-header { .card-header {