fix(chat): add break-words class to user message for better text wrapping

This commit is contained in:
lc6464 2026-03-27 17:11:19 +08:00
parent 9cbb4ab7ad
commit b5e29ae501
No known key found for this signature in database
GPG key ID: 53C61B42FEC71D6D

View file

@ -5,7 +5,7 @@ interface UserMessageProps {
export function UserMessage({ content }: UserMessageProps) {
return (
<div className="flex w-full flex-col items-end gap-1.5">
<div className="max-w-[70%] rounded-2xl rounded-tr-sm bg-violet-500 px-5 py-3 text-[15px] leading-relaxed whitespace-pre-wrap text-white shadow-sm">
<div className="max-w-[70%] rounded-2xl rounded-tr-sm bg-violet-500 px-5 py-3 text-[15px] leading-relaxed whitespace-pre-wrap text-white shadow-sm break-words">
{content}
</div>
</div>