Make it possible to scroll during streaming (#3721)

This commit is contained in:
oobabooga 2023-08-28 16:03:20 -03:00 committed by GitHub
parent 7d3a0b5387
commit 57e9ded00c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 34 additions and 25 deletions

View file

@ -291,17 +291,13 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* {
padding: 0px;
}
#chat {
.chat-parent {
height: calc(100dvh - 262px) !important;
}
.bigchat #chat {
.bigchat {
height: calc(100dvh - 180px) !important;
}
.chat {
flex-direction: column-reverse !important;
}
}
.chat {
@ -318,11 +314,12 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* {
padding-top: 6px;
}
#chat {
.chat-parent {
height: calc(100dvh - 272px);
overflow: auto !important;
}
.bigchat #chat {
.bigchat {
height: calc(100dvh - 200px);
}