feat: chat首页渲染优化

This commit is contained in:
rd
2025-08-25 18:01:04 +08:00
parent 13670acc9a
commit 6926a43d8a
14 changed files with 544 additions and 343 deletions

View File

@ -0,0 +1,31 @@
.chat-view-wrap {
.cts {
color: var(--Text-1, #737478);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px;
}
:deep(.xt-bubble) {
.file-card {
border-radius: 12px;
border: 1px solid var(--Border-2, #e6e6e8);
background: linear-gradient(90deg, #f6f4ff 0%, #fff 100%);
padding: 13px 16px;
display: flex;
justify-content: center;
align-items: center;
}
&.process-row {
position: relative;
&::after {
top: 0;
left: 0;
position: absolute;
width: 1px;
height: 100%;
background: #e6e6e8;
}
}
}
}