damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit bba651b37cdfa18e1633d2470f31a7eb5cfce1bf
parent 03ded7d39f343eb9df1432469331e57cd483734e
Author: ericholguin <ericholguin@apache.org>
Date:   Sat, 26 Oct 2024 21:55:28 -0600

ui: reduce bold font in side menu

This PR simply reduces the bold font in the side menu labels.

Changelog-Changed: Changed boldness of font in side menu labels.

Signed-off-by: ericholguin <ericholguin@apache.org>

Diffstat:
Mdamus/Views/SideMenuView.swift | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/damus/Views/SideMenuView.swift b/damus/Views/SideMenuView.swift @@ -51,7 +51,7 @@ struct SideMenuView: View { Image("nostr-hashtag") Text("Purple") .foregroundColor(DamusColors.purple) - .font(.title2.weight(.bold)) + .font(.title2.weight(.semibold)) } .frame(maxWidth: .infinity, alignment: .leading) } @@ -218,7 +218,7 @@ struct SideMenuView: View { .tint(DamusColors.adaptableBlack) Text(title) - .font(.title2.weight(.bold)) + .font(.title2.weight(.semibold)) .foregroundColor(DamusColors.adaptableBlack) .frame(maxWidth: .infinity, alignment: .leading) .dynamicTypeSize(.xSmall)