Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
retry text area height (#1091)
Browse files
src/lib/components/chat/ChatMessage.svelte
CHANGED
|
@@ -344,7 +344,8 @@
|
|
| 344 |
}}
|
| 345 |
>
|
| 346 |
<textarea
|
| 347 |
-
class="w-full whitespace-break-spaces break-words rounded-
|
|
|
|
| 348 |
bind:this={editContentEl}
|
| 349 |
value={message.content.trim()}
|
| 350 |
on:keydown={handleKeyDown}
|
|
|
|
| 344 |
}}
|
| 345 |
>
|
| 346 |
<textarea
|
| 347 |
+
class="w-full whitespace-break-spaces break-words rounded-xl bg-gray-100 px-5 py-3.5 text-gray-500 *:h-max dark:bg-gray-800 dark:text-gray-400"
|
| 348 |
+
rows="5"
|
| 349 |
bind:this={editContentEl}
|
| 350 |
value={message.content.trim()}
|
| 351 |
on:keydown={handleKeyDown}
|