Move the UI to be vertical.

This commit is contained in:
Greyson Parrelli
2026-07-24 22:16:28 -04:00
parent 0a1e2f9bee
commit 95499026d7
5 changed files with 350 additions and 409 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ const TICK_MS = 70
// on the values the server actually rolled. Faces carry rock icons (0, 1, or
// 2 rocks) — the same die the game uses, not a pip D6. Mount it with a `key`
// that changes per rock event so the scramble replays every time.
export function DiceRoll({ dice, side }: { dice: number[]; side: 'left' | 'right' }) {
export function DiceRoll({ dice, side }: { dice: number[]; side: 'top' | 'bottom' }) {
const [display, setDisplay] = useState<number[]>(dice)
const [settled, setSettled] = useState(false)