fix(工作台): copilot页面异常当超出一页页面无法滚动 (#14050)

This commit is contained in:
dataeaseShu 2024-12-13 17:49:27 +08:00 committed by GitHub
parent 74113faed1
commit ee3a16299b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -368,6 +368,7 @@ const queryAnswer = (event?: KeyboardEvent) => {
.copilot {
width: 100%;
height: 100%;
max-height: calc(100vh - 56px);
.copilot-analysis {
background-color: #fff;
@ -386,12 +387,15 @@ const queryAnswer = (event?: KeyboardEvent) => {
.dialogue {
flex: 1;
position: relative;
max-height: 100%;
.copilot-dialogue {
padding: 0 160px;
padding-top: 24px;
position: relative;
overflow-y: auto;
padding-bottom: 25px;
max-height: 100%;
}
.question-input {
min-height: 47px;