element-call/src/Home.module.css

48 lines
680 B
CSS
Raw Normal View History

2021-08-19 17:49:45 -07:00
.roomList {
}
.roomListItem {
margin-bottom: 4px;
padding: 4px;
display: flex;
cursor: pointer;
text-decoration: none;
color: white;
align-items: center;
}
.roomListItem:hover {
background-color: rgba(141, 151, 165, 0.2);
border-radius: 8px;
color: white;
}
.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;
}