WIP on persisting chat history on daemon
This commit is contained in:
@@ -25,14 +25,27 @@ body {
|
||||
.response-area {
|
||||
width: 100%;
|
||||
height: 300px;
|
||||
overflow-y: scroll;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.msg {
|
||||
margin: 1px;
|
||||
border: solid 1px #808080;
|
||||
animation: slideIn 0.3s ease-out;
|
||||
max-width: 70%;
|
||||
}
|
||||
|
||||
.msg-user {
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
@keyframes slideIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateY(10px) scale(0.95);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateY(0) scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user