feat: add shots on goal bar to live game cards, clean up gitignore
All checks were successful
CI / Lint (push) Successful in 5s
CI / Test (push) Successful in 5s
CI / Build & Push (push) Successful in 13s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-29 13:19:59 -04:00
parent def491a4d4
commit 9ad563ed3f
7 changed files with 81 additions and 1 deletions

View File

@@ -196,6 +196,61 @@ main {
white-space: nowrap;
}
/* ── Shots Bar ──────────────────────────────────── */
.shots-bar {
margin-top: 0.75rem;
}
.shots-row {
display: flex;
align-items: center;
gap: 0.4rem;
}
.shots-track {
flex: 1;
height: 5px;
border-radius: 99px;
overflow: hidden;
display: flex;
background: var(--badge-bg);
}
.shots-fill {
height: 100%;
transition: width 0.5s ease;
}
.shots-fill-away {
background: #4a90e2;
border-radius: 99px 0 0 99px;
}
.shots-fill-home {
background: #f97316;
border-radius: 0 99px 99px 0;
}
.shots-num {
font-size: 0.72rem;
font-weight: 700;
color: var(--text);
min-width: 1.25rem;
text-align: center;
}
.shots-label {
display: block;
font-size: 0.6rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--text-muted);
margin-top: 0.25rem;
text-align: center;
}
/* ── Hype Meter ─────────────────────────────────── */
.hype-meter {