From c5d2caa3454ab167ccef2ff949f2571f5a0efd46 Mon Sep 17 00:00:00 2001 From: dmitriylaukhin Date: Tue, 19 May 2026 13:32:52 +0500 Subject: [PATCH] Fix message alignment in QuestionThread --- src/components/questions/QuestionThread.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/questions/QuestionThread.tsx b/src/components/questions/QuestionThread.tsx index ab91846..cd30056 100644 --- a/src/components/questions/QuestionThread.tsx +++ b/src/components/questions/QuestionThread.tsx @@ -119,7 +119,7 @@ export function QuestionThread({ key={msg.id} className="max-w-[88%] px-3 py-2 rounded-sm text-sm" style={{ - alignSelf: isMine ? "flex-start" : "flex-end", + alignSelf: isMine ? "flex-end" : "flex-start", background: isMine ? "#E8E8E0" : "#F5F5F0", border: isMine ? "none" : `2px solid #E8F0D8`, borderLeft: !isMine && isNew ? "3px solid #323232" : undefined,