element-call/src/Facepile.module.css

32 lines
471 B
CSS
Raw Normal View History

2021-10-04 22:37:23 +00:00
.facepile {
2021-10-22 17:46:34 +00:00
display: flex;
2021-10-04 22:37:23 +00:00
margin: 0 16px;
}
.facepile .avatar {
position: relative;
width: 20px;
height: 20px;
border-radius: 20px;
2021-11-18 01:52:31 +00:00
background-color: var(--primaryColor);
2021-10-04 22:37:23 +00:00
}
.facepile .avatar > * {
position: absolute;
left: 0;
color: #fff;
text-align: center;
pointer-events: none;
font-weight: 600;
}
.facepile .avatar span {
font-size: 14px;
width: 20px;
line-height: 20px;
}
2021-11-10 23:44:08 +00:00
.facepile .avatar.additional span {
font-size: 12px;
}