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)