feat: Conversations封装、首页开发

This commit is contained in:
rd
2025-08-19 18:01:30 +08:00
parent b717c7629f
commit c0fbf501e1
19 changed files with 594 additions and 29 deletions

View File

@ -0,0 +1,37 @@
.ct-history-conversation-drawer {
border-radius: 8px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
.ant-drawer-content {
.ant-drawer-header {
display: none;
}
.ant-drawer-body {
padding: 0;
display: flex;
flex-direction: column;
.header {
position: relative;
&::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
margin: 0 16px;
background: #f2f3f5;
}
}
.content {
.ant-conversations {
gap: 0;
padding: 0;
.ant-conversations-item {
gap: 0;
padding: 8px;
}
}
}
}
}
}