TP-O commited on
Commit
26ccb67
1 Parent(s): 767afa7

🐛 Add missing classes for pre tag (#220)

Browse files
src/lib/components/chat/ChatInput.svelte CHANGED
@@ -37,7 +37,7 @@
37
 
38
  <div class="relative min-w-0 flex-1">
39
  <pre
40
- class="invisible whitespace-pre-wrap p-3"
41
  aria-hidden="true"
42
  style="min-height: {minHeight}; max-height: {maxHeight}">{(value || " ") + "\n"}</pre>
43
 
 
37
 
38
  <div class="relative min-w-0 flex-1">
39
  <pre
40
+ class="scrollbar-custom invisible overflow-x-hidden overflow-y-scroll whitespace-pre-wrap break-words p-3"
41
  aria-hidden="true"
42
  style="min-height: {minHeight}; max-height: {maxHeight}">{(value || " ") + "\n"}</pre>
43