From 0036eaf6256679c43c4c40458115ce091f2622ff Mon Sep 17 00:00:00 2001 From: Eric Wagoner Date: Tue, 22 Sep 2026 16:02:26 -0400 Subject: [PATCH] On a phone, a reveal scrolls to what happened The result strip comes into view with the last two ledger rows above it, so the revealed gestures and their outcome are the first thing seen. Co-Authored-By: Claude Fable 5.1 --- src/lib/components/TurnSummary.svelte | 10 +++++++++- src/lib/game/duel.svelte.ts | 9 +++++++++ src/routes/+page.svelte | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/src/lib/components/TurnSummary.svelte b/src/lib/components/TurnSummary.svelte index b4ab4c9..ed8f0b8 100644 --- a/src/lib/components/TurnSummary.svelte +++ b/src/lib/components/TurnSummary.svelte @@ -11,7 +11,7 @@ {#if summary} -
+

{summary.phase === 'timestop' ? 'In the stopped moment' : `Turn ${summary.turn + 1}`}

{#each [YOU, FOE] as const as who (who)} @@ -50,6 +50,7 @@