From e06abd491f6cf4b6eee7510c580fb205dde942b3 Mon Sep 17 00:00:00 2001 From: rzen Date: Sat, 25 Apr 2026 15:30:17 -0400 Subject: [PATCH] Use fully monospaced score field and tone series score down to secondary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switch the score Text from .monospacedDigit() to .monospaced() so the dash in the "- : -" pre-game placeholder takes the same character cell as a digit — home logos now line up across upcoming and finished games. Series scores keep the dash (it reads as series progress, not a goal total) but match game scores in secondary color so they sit visually behind the tricodes. --- IceGlass-iOS/Views/GameRow.swift | 2 +- IceGlass-iOS/Views/SeriesRow.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/IceGlass-iOS/Views/GameRow.swift b/IceGlass-iOS/Views/GameRow.swift index f1442e9..8499d30 100644 --- a/IceGlass-iOS/Views/GameRow.swift +++ b/IceGlass-iOS/Views/GameRow.swift @@ -48,7 +48,7 @@ struct GameRow: View { .fixedSize() Text(showScore ? scoreText : "- : -") - .font(.title3.monospacedDigit()) + .font(.title3.monospaced()) .fontWeight(.bold) .foregroundStyle(.secondary) .lineLimit(1) diff --git a/IceGlass-iOS/Views/SeriesRow.swift b/IceGlass-iOS/Views/SeriesRow.swift index 9744e43..9cd015b 100644 --- a/IceGlass-iOS/Views/SeriesRow.swift +++ b/IceGlass-iOS/Views/SeriesRow.swift @@ -38,9 +38,9 @@ struct SeriesRow: View { .lineLimit(1) .fixedSize() Text(seriesScore) - .font(.title3.monospacedDigit()) + .font(.title3.monospaced()) .fontWeight(.bold) - .foregroundStyle(.primary) + .foregroundStyle(.secondary) .lineLimit(1) .fixedSize() .padding(.horizontal, 2)