From 2c31d25596f1b8912d556d829c352775bd48798b Mon Sep 17 00:00:00 2001 From: cheykrym Date: Wed, 22 Oct 2025 05:31:01 +0300 Subject: [PATCH] fix size --- yobble/Views/Chat/PrivateChatView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yobble/Views/Chat/PrivateChatView.swift b/yobble/Views/Chat/PrivateChatView.swift index 5aaa4ad..245f955 100644 --- a/yobble/Views/Chat/PrivateChatView.swift +++ b/yobble/Views/Chat/PrivateChatView.swift @@ -209,7 +209,7 @@ struct PrivateChatView: View { private var composer: some View { VStack(spacing: 10) { - HStack(alignment: .bottom, spacing: 3) { + HStack(alignment: .bottom, spacing: 4) { Button(action: { }) { // переключатель на стикеры Image(systemName: "paperclip") .font(.system(size: 18, weight: .semibold)) @@ -272,9 +272,9 @@ struct PrivateChatView: View { private var sendButton: some View { Button(action: sendCurrentMessage) { Image(systemName: "paperplane.fill") - .font(.system(size: 18, weight: .semibold)) + .font(.system(size: 16, weight: .semibold)) .foregroundColor(Color.white.opacity(isSendDisabled ? 0.6 : 1)) - .frame(width: 40, height: 40) + .frame(width: 36, height: 36) .background(isSendDisabled ? Color.accentColor.opacity(0.4) : Color.accentColor) .clipShape(Circle()) }