修复交互内容ai输出解析过大导致布局打乱
This commit is contained in:
parent
34163edd8b
commit
dd8f9f1603
|
|
@ -1013,13 +1013,13 @@ const getFileListData = async () => {
|
|||
border-radius: 4px;
|
||||
padding: 10px 15px;
|
||||
white-space: pre-wrap;
|
||||
max-width: 70%;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.message.assistant .message-content {
|
||||
background-color: #f3f4f6;
|
||||
border: 1px solid #dce4eb;
|
||||
max-width: 70%;
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
.loading-indicator {
|
||||
|
|
|
|||
|
|
@ -911,13 +911,13 @@ const renderMarkdown = (message: Message, index:number) => {
|
|||
border-radius: 4px;
|
||||
padding: 10px 15px;
|
||||
white-space: pre-wrap;
|
||||
max-width: 70%;
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.message.assistant .message-content {
|
||||
background-color: #f3f4f6;
|
||||
border: 1px solid #dce4eb;
|
||||
max-width: 70%;
|
||||
max-width: 1000px;
|
||||
}
|
||||
|
||||
.loading-indicator {
|
||||
|
|
|
|||
Loading…
Reference in New Issue