crossmate

A collaborative crossword app for iOS
Log | Files | Refs | LICENSE

commit 2584772c9908049e23431f686653cda28e9cd249
parent b1693697efa3d082aaa5fadda19209e108b3dc96
Author: Michael Camilleri <[email protected]>
Date:   Sun, 28 Jun 2026 00:25:45 +0900

Move timer heading

Diffstat:
MCrossmate/Views/Puzzle/PuzzleHeader.swift | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Crossmate/Views/Puzzle/PuzzleHeader.swift b/Crossmate/Views/Puzzle/PuzzleHeader.swift @@ -214,13 +214,13 @@ private struct PuzzleClock: View { var body: some View { TimelineView(.periodic(from: .now, by: 1)) { context in VStack(spacing: 2) { + Text("Solving Time") + .font(.footnote) + .foregroundStyle(.secondary) Text(TimeLog.clockString(roster.solveTime(asOf: context.date))) .font(.headline) .monospacedDigit() .contentTransition(.numericText()) - Text("Solving Time") - .font(.footnote) - .foregroundStyle(.secondary) } .multilineTextAlignment(.center) .frame(maxWidth: .infinity)