From e2809acb0d18e9a6fcb43be42220ff53e73207df Mon Sep 17 00:00:00 2001 From: Stuart Breckenridge Date: Mon, 3 Oct 2022 22:31:54 +0800 Subject: [PATCH] Makes role font smaller on iOS --- iOS/Settings/AboutView.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/iOS/Settings/AboutView.swift b/iOS/Settings/AboutView.swift index dfcc96355..70cd411e2 100644 --- a/iOS/Settings/AboutView.swift +++ b/iOS/Settings/AboutView.swift @@ -64,8 +64,9 @@ struct AboutView: View, LoadableAboutData { Spacer() if let role = appCredit.role { Text(role) - .font(.callout) + .font(.footnote) .foregroundColor(.secondary) + .multilineTextAlignment(.trailing) } if let _ = appCredit.url { Image(systemName: "info.circle")