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>
This commit is contained in:
ericholguin
2024-10-26 21:55:28 -06:00
parent 03ded7d39f
commit bba651b37c

View File

@@ -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)