fix: chat history with memory

This commit is contained in:
Yifei Zhang
2023-03-19 16:09:30 +00:00
parent c133cae04b
commit 4d97c269ff
4 changed files with 59 additions and 50 deletions

View File

@@ -8,18 +8,22 @@
}
.window-header-title {
font-size: 20px;
font-weight: bolder;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
max-width: 50vw;
}
max-width: calc(100% - 100px);
.window-header-sub-title {
font-size: 14px;
margin-top: 5px;
.window-header-main-title {
font-size: 20px;
font-weight: bolder;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: block;
max-width: 50vw;
}
.window-header-sub-title {
font-size: 14px;
margin-top: 5px;
}
}
.window-actions {
@@ -28,4 +32,4 @@
.window-action-button {
margin-left: 10px;
}
}