From 223908fb3a2987dea652ed69c5ca7432713c1861 Mon Sep 17 00:00:00 2001 From: Sam DuBois Date: Sun, 18 Dec 2022 21:52:03 -0700 Subject: [PATCH] font adjustments to the following. Looking good --- damus/Views/ProfileName.swift | 1 - damus/Views/ProfileView.swift | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/damus/Views/ProfileName.swift b/damus/Views/ProfileName.swift index 93715a3..803107d 100644 --- a/damus/Views/ProfileName.swift +++ b/damus/Views/ProfileName.swift @@ -147,7 +147,6 @@ struct EventProfileName: View { .font(.subheadline) } else { Text(String(display_name ?? Profile.displayName(profile: profile, pubkey: pubkey))) - .foregroundColor(.black) .font(.subheadline) .fontWeight(.bold) } diff --git a/damus/Views/ProfileView.swift b/damus/Views/ProfileView.swift index 6397db8..9d67ada 100644 --- a/damus/Views/ProfileView.swift +++ b/damus/Views/ProfileView.swift @@ -147,7 +147,9 @@ struct ProfileView: View { NavigationLink(destination: FollowingView(damus_state: damus_state, following: following_model, whos: profile.pubkey)) { HStack { Text("\(profile.following)") + .font(.subheadline.weight(.medium)) Text("Following") + .font(.subheadline) .foregroundColor(.gray) } } @@ -158,7 +160,9 @@ struct ProfileView: View { NavigationLink(destination: fview) { HStack { Text("\(followers.contacts.count)") + .font(.subheadline.weight(.medium)) Text("Followers") + .font(.subheadline) .foregroundColor(.gray) } }