18 lines
293 B
SCSS
18 lines
293 B
SCSS
.chat-list-selected-conversation {
|
|
background-color: rgba(128, 128, 128, 0.2);
|
|
}
|
|
.chat-list-container {
|
|
overflow: hidden;
|
|
height: 100%;
|
|
border: 1px solid gainsboro;
|
|
}
|
|
.chat-list-item {
|
|
.ant-card-head {
|
|
border: none;
|
|
}
|
|
&:hover {
|
|
cursor: pointer;
|
|
color: #ff7a00;
|
|
}
|
|
}
|