From 1a2de6aa5d812baa03e7e3199b967e3aee89e2ec Mon Sep 17 00:00:00 2001 From: Laurent Date: Tue, 30 Apr 2024 10:46:22 +0200 Subject: [PATCH] Font fixes --- PadelClub/Views/Planning/SchedulerView.swift | 2 +- PadelClub/Views/Shared/MatchFormatPickerView.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/PadelClub/Views/Planning/SchedulerView.swift b/PadelClub/Views/Planning/SchedulerView.swift index 85bb94f..4ddc395 100644 --- a/PadelClub/Views/Planning/SchedulerView.swift +++ b/PadelClub/Views/Planning/SchedulerView.swift @@ -68,7 +68,7 @@ struct SchedulerView: View { .environment(tournament) } label: { LabeledContent { - Text(round.matchFormat.format).font(.title2) + Text(round.matchFormat.format)//.font(.title2) } label: { if let startDate = round.getStartDate() { HStack { diff --git a/PadelClub/Views/Shared/MatchFormatPickerView.swift b/PadelClub/Views/Shared/MatchFormatPickerView.swift index d7e1fad..fadefd0 100644 --- a/PadelClub/Views/Shared/MatchFormatPickerView.swift +++ b/PadelClub/Views/Shared/MatchFormatPickerView.swift @@ -33,9 +33,9 @@ struct MatchFormatPickerView: View { var descriptionView: some View { VStack(alignment: .leading) { HStack { - Text(headerLabel).font(.caption) + Text(headerLabel).font(.footnote) Spacer() - Text("Durée").font(.caption) + Text("Durée").font(.footnote) } HStack { Text(matchFormat.format).font(.title).fontWeight(.semibold)