17 lines
212 B
SCSS
17 lines
212 B
SCSS
.chat-list-container {
|
|
overflow: hidden;
|
|
height: 100%;
|
|
border: 1px solid gainsboro;
|
|
}
|
|
|
|
.chat-list-item {
|
|
.ant-card-head {
|
|
border: none;
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: #ff7a00;
|
|
}
|
|
}
|