Skip to content

Commit aaba8fa

Browse files
committed
fix: remove redundant rtl/ltr classes from message input containers
1 parent be3954e commit aaba8fa

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/lib/components/channel/MessageInput.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -893,9 +893,9 @@
893893
{/if}
894894

895895
<div class="px-2.5">
896-
<div
897-
class="scrollbar-hidden rtl:text-right ltr:text-left bg-transparent dark:text-gray-100 outline-hidden w-full pt-2.5 pb-[5px] px-1 resize-none h-fit max-h-96 overflow-auto"
898-
>
896+
<div
897+
class="scrollbar-hidden bg-transparent dark:text-gray-100 outline-hidden w-full pt-2.5 pb-[5px] px-1 resize-none h-fit max-h-96 overflow-auto"
898+
>
899899
{#key $settings?.richTextInput && $settings?.showFormattingToolbar}
900900
<RichTextInput
901901
id="chat-input"

src/lib/components/chat/MessageInput.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1420,7 +1420,7 @@
14201420

14211421
<div class="px-2.5">
14221422
<div
1423-
class="scrollbar-hidden rtl:text-right ltr:text-left bg-transparent dark:text-gray-100 outline-hidden w-full pb-1 px-1 resize-none h-fit max-h-96 overflow-auto {files.length ===
1423+
class="scrollbar-hidden bg-transparent dark:text-gray-100 outline-hidden w-full pb-1 px-1 resize-none h-fit max-h-96 overflow-auto {files.length ===
14241424
0
14251425
? atSelectedModel !== undefined
14261426
? 'pt-1.5'

0 commit comments

Comments
 (0)