FIX: Chat messages wrap;

This commit is contained in:
Chris-1010
2025-02-19 23:05:13 +00:00
parent 4e85007854
commit 416bd4a381
2 changed files with 5 additions and 1 deletions

View File

@@ -171,6 +171,10 @@ body {
color: var(--text-color); color: var(--text-color);
} }
.message {
word-wrap: anywhere;
}

View File

@@ -177,7 +177,7 @@ const ChatPanel: React.FC<ChatPanelProps> = ({
</span> </span>
</div> </div>
{/* Message content */} {/* Message content */}
<div className="w-full text-[0.9em] mt-0.5em flex flex-col overflow-hidden break-words"> <div className="message w-full text-[0.9em] mt-0.5em flex flex-col overflow-hidden" >
{msg.message} {msg.message}
</div> </div>
</div> </div>