This commit is contained in:
spaced4ndy
2026-07-07 14:52:47 +04:00
parent dd76fd5bff
commit 0f1c3087cb
3 changed files with 3 additions and 3 deletions
@@ -148,7 +148,7 @@ func ciMetaText(
space = textSpace
}
if meta.msgSigned == .verified {
r = r + colored(Text(Image("signature.plain")).font(.caption.weight(.light)), resolved)
r = r + colored(Text(Image("signature.plain")).font(.caption.weight(.ultraLight)), resolved)
space = textSpace
}
if showTimesamp {
@@ -168,7 +168,7 @@ struct ChatItemInfoView: View {
Label {
Text(signedText)
} icon: {
Text(Image("signature.plain")).fontWeight(.light).foregroundColor(.secondary)
Text(Image("signature.plain")).fontWeight(.ultraLight).foregroundColor(.secondary)
}
Spacer()
}
@@ -253,7 +253,7 @@ struct SendMessageView: View {
Label {
Text("Sign message")
} icon: {
Text(Image("signature.plain")).fontWeight(.light)
Text(Image("signature.plain")).fontWeight(.ultraLight)
}
}
}