2021-08-19 17:49:45 -07:00
|
|
|
.roomList {
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomListItem {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
padding: 4px;
|
|
|
|
display: flex;
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
2021-11-17 17:52:31 -08:00
|
|
|
color: var(--textColor1);
|
2021-08-19 17:49:45 -07:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomListItem:hover {
|
|
|
|
background-color: rgba(141, 151, 165, 0.2);
|
|
|
|
border-radius: 8px;
|
2021-11-17 17:52:31 -08:00
|
|
|
color: var(--textColor1);
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.roomAvatar {
|
|
|
|
position: relative;
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 32px;
|
2021-11-10 15:31:47 -08:00
|
|
|
flex-shrink: 0;
|
2021-08-19 17:49:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.roomAvatar > * {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
pointer-events: none;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomAvatar span {
|
|
|
|
font-size: 20.8px;
|
|
|
|
width: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.roomName {
|
|
|
|
margin-left: 8px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 18px;
|
|
|
|
}
|