### What problem does this PR solve? fix: if the conversation name is too long, it will overflow the current item. #607 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
71 lines
1.0 KiB
Plaintext
71 lines
1.0 KiB
Plaintext
.chatWrapper {
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
.chatAppWrapper {
|
|
width: 288px;
|
|
padding: 26px;
|
|
|
|
.chatAppContent {
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.chatAppCard {
|
|
:global(.ant-card-body) {
|
|
padding: 10px;
|
|
}
|
|
.cubeIcon {
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
}
|
|
.chatAppCardSelected {
|
|
:global(.ant-card-body) {
|
|
background-color: @gray11;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
}
|
|
.chatTitleWrapper {
|
|
width: 220px;
|
|
padding: 26px 0;
|
|
}
|
|
|
|
.chatTitle {
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
.chatTitleContent {
|
|
padding: 5px 10px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.chatSpin {
|
|
:global(.ant-spin-container) {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
}
|
|
|
|
.chatTitleCard {
|
|
:global(.ant-card-body) {
|
|
padding: 8px;
|
|
}
|
|
}
|
|
|
|
.chatTitleCardSelected {
|
|
:global(.ant-card-body) {
|
|
background-color: @gray11;
|
|
border-radius: 8px;
|
|
}
|
|
}
|
|
|
|
.divider {
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
}
|