FIX-RTL in UserMessage.svelte

FIX-RTL in UserMessage.svelte
This commit is contained in:
_00_ 2025-08-24 23:03:24 +02:00 committed by GitHub
parent 3ff773c199
commit 3a360e441e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -329,7 +329,7 @@
? `max-w-[90%] px-5 py-2 bg-gray-50 dark:bg-gray-850 ${ ? `max-w-[90%] px-5 py-2 bg-gray-50 dark:bg-gray-850 ${
message.files ? 'rounded-tr-lg' : '' message.files ? 'rounded-tr-lg' : ''
}` }`
: ' w-full'}" : ' w-full'} {$settings.chatDirection === 'RTL' ? 'text-right' : ''}"
> >
{#if message.content} {#if message.content}
<Markdown id={`${chatId}-${message.id}`} content={message.content} {topPadding} /> <Markdown id={`${chatId}-${message.id}`} content={message.content} {topPadding} />