Use fully monospaced score field and tone series score down to secondary

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.
This commit is contained in:
2026-04-25 15:30:17 -04:00
parent 52ebfc1a6b
commit e06abd491f
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -48,7 +48,7 @@ struct GameRow: View {
.fixedSize()
Text(showScore ? scoreText : "- : -")
.font(.title3.monospacedDigit())
.font(.title3.monospaced())
.fontWeight(.bold)
.foregroundStyle(.secondary)
.lineLimit(1)
+2 -2
View File
@@ -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)