From fc3a2e0b6ef475457359e2df4c4ae3158ba0ce0b Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Mon, 21 Jul 2025 10:38:32 +0100 Subject: [PATCH] fonts --- apps/ios/Shared/Views/Chat/ChatView.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/apps/ios/Shared/Views/Chat/ChatView.swift b/apps/ios/Shared/Views/Chat/ChatView.swift index a54356deb2..f57c5bd301 100644 --- a/apps/ios/Shared/Views/Chat/ChatView.swift +++ b/apps/ios/Shared/Views/Chat/ChatView.swift @@ -831,8 +831,7 @@ struct ChatView: View { let fullName = chat.chatInfo.fullName.trimmingCharacters(in: .whitespacesAndNewlines) if fullName != "" && fullName != chat.chatInfo.displayName && fullName != chat.chatInfo.displayName.trimmingCharacters(in: .whitespacesAndNewlines) { Text(chat.chatInfo.fullName) - .font(.headline) - .fontWeight(.regular) + .font(.subheadline) .multilineTextAlignment(.center) .lineLimit(3) .fixedSize(horizontal: false, vertical: true) @@ -850,7 +849,7 @@ struct ChatView: View { if let chatContext = chatContext() { Label(chatContext, systemImage: "info.circle") - .font(.subheadline) + .font(.callout) .foregroundColor(theme.colors.secondary) .padding(.top, 8) }