From 66ca1bb130f1ba1819afbf2496825f50ff71d41a Mon Sep 17 00:00:00 2001 From: cheykrym Date: Fri, 12 Dec 2025 01:25:07 +0300 Subject: [PATCH] putch bubble --- yobble/Views/Chat/PrivateChatView.swift | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/yobble/Views/Chat/PrivateChatView.swift b/yobble/Views/Chat/PrivateChatView.swift index 85221de..0bab92c 100644 --- a/yobble/Views/Chat/PrivateChatView.swift +++ b/yobble/Views/Chat/PrivateChatView.swift @@ -291,8 +291,7 @@ struct PrivateChatView: View { .foregroundColor(isCurrentUser ? foregroundColor.opacity(0.85) : .secondary) } } - // Lower the timestamp slightly to make it look like it's in the corner. - .padding(.bottom, 2) + .offset(y: 3) // Move the timestamp view down } .padding(.vertical, 10) .padding(.horizontal, 12) @@ -302,7 +301,7 @@ struct PrivateChatView: View { showHornsRaw: decorations.showHorns, showLegsRaw: decorations.showLegs ) - .fill(bubbleColor) + .fill(bubbleColor) ) .frame(maxWidth: messageBubbleMaxWidth, alignment: isCurrentUser ? .trailing : .leading) .fixedSize(horizontal: false, vertical: true)