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)