Spaces:
Paused
Paused
fix: remove hardcoded font size on mobile
Browse files
src/lib/components/chat/ChatInput.svelte
CHANGED
|
@@ -164,7 +164,7 @@
|
|
| 164 |
rows="1"
|
| 165 |
tabindex="0"
|
| 166 |
inputmode="text"
|
| 167 |
-
class="scrollbar-custom max-h-[4lh] w-full resize-none overflow-y-auto overflow-x-hidden border-0 bg-transparent px-2.5 py-2.5 outline-none focus:ring-0 focus-visible:ring-0
|
| 168 |
class:text-gray-400={disabled}
|
| 169 |
bind:value
|
| 170 |
bind:this={textareaElement}
|
|
|
|
| 164 |
rows="1"
|
| 165 |
tabindex="0"
|
| 166 |
inputmode="text"
|
| 167 |
+
class="scrollbar-custom max-h-[4lh] w-full resize-none overflow-y-auto overflow-x-hidden border-0 bg-transparent px-2.5 py-2.5 outline-none focus:ring-0 focus-visible:ring-0 sm:px-3"
|
| 168 |
class:text-gray-400={disabled}
|
| 169 |
bind:value
|
| 170 |
bind:this={textareaElement}
|