813d18e133
- Add src/game/scoring.ts with computeRunningTotals and isGameOver - Build ScoreSheet grid: player columns, per-round scores, running totals after round 2+ - Small red "New Game" button in header top-right with full-screen confirmation overlay - Extend PageFrame with headerAction and overlay props - Move press animation/shadow from .pressable class to global button selector Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
259 B
CSS
17 lines
259 B
CSS
.button {
|
|
width: 100%;
|
|
padding: 1rem;
|
|
background: var(--color-blue);
|
|
border: none;
|
|
border-radius: 1rem;
|
|
font-size: 1.25rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.button:disabled {
|
|
opacity: 0.45;
|
|
box-shadow: none;
|
|
cursor: not-allowed;
|
|
}
|