Skip to content

Commit

Permalink
iosapp: increase a few small font sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredh159 committed Oct 15, 2024
1 parent 327bbe5 commit 5e4e0d7
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion iosapp/lib-ios/Sources/App/Views/AuthFailed.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ struct AuthFailed: View {
}
}
.multilineTextAlignment(.center)
.font(.footnote)

Button {
self.onTryAgain()
Expand Down
1 change: 0 additions & 1 deletion iosapp/lib-ios/Sources/App/Views/InstallFail.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ struct InstallFail: View {
Text("Unexpected error: \(underlying)")
}
}
.font(.footnote)
.foregroundColor(.red)
.padding(.bottom, 20)
.multilineTextAlignment(.center)
Expand Down
3 changes: 1 addition & 2 deletions iosapp/lib-ios/Sources/App/Views/Running.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ struct Running: View {
var body: some View {
VStack(spacing: 20) {
Text("Gertrude is blocking GIFs and image searches.")
.font(.system(size: 20, weight: .semibold))
.font(.system(size: 24, weight: .semibold))
.multilineTextAlignment(.center)

Text("You can quit this app now—it will keep blocking even when not running.")
.font(.footnote)
.multilineTextAlignment(.center)

Spacer()
Expand Down

0 comments on commit 5e4e0d7

Please sign in to comment.