Files
lingji-work-fe/src/views/home/components/history-conversation-drawer/style.scss

37 lines
731 B
SCSS

.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;
background: #f2f3f5;
}
}
.content {
.ant-conversations {
gap: 0;
padding: 0;
.ant-conversations-item {
gap: 0;
padding: 8px;
}
}
}
}
}
}