From ae00c103ad490042fd3c811f45777f499209859a Mon Sep 17 00:00:00 2001 From: ericholguin Date: Tue, 7 Mar 2023 21:25:39 -0700 Subject: [PATCH] Adjusted repost font size and weight --- damus/Components/Reposted.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/damus/Components/Reposted.swift b/damus/Components/Reposted.swift index cd65206d..373429cc 100644 --- a/damus/Components/Reposted.swift +++ b/damus/Components/Reposted.swift @@ -15,12 +15,12 @@ struct Reposted: View { var body: some View { HStack(alignment: .center) { Image(systemName: "arrow.2.squarepath") - .font(.footnote) + .font(.system(size: 13, weight: .heavy)) .foregroundColor(Color.gray) ProfileName(pubkey: pubkey, profile: profile, damus: damus, show_friend_confirmed: true, show_nip5_domain: false) .foregroundColor(Color.gray) Text("Reposted", comment: "Text indicating that the post was reposted (i.e. re-shared).") - .font(.footnote) + .font(.system(size: 14, weight: .heavy)) .foregroundColor(Color.gray) } }