2021-12-07 17:59:55 -08:00
|
|
|
.callTile {
|
2022-01-04 17:09:27 -08:00
|
|
|
width: 329px;
|
|
|
|
|
height: 95px;
|
2021-12-07 17:59:55 -08:00
|
|
|
padding: 12px;
|
|
|
|
|
background-color: var(--bgColor2);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
overflow: hidden;
|
2021-12-10 10:54:18 -08:00
|
|
|
box-sizing: border-box;
|
2021-12-10 14:01:55 -08:00
|
|
|
position: relative;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.callTileLink {
|
|
|
|
|
display: flex;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
width: 100%;
|
2021-12-07 17:59:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avatar,
|
2021-12-10 14:01:55 -08:00
|
|
|
.copyButtonSpacer {
|
2021-12-07 17:59:55 -08:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.callInfo {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 0 16px;
|
|
|
|
|
color: var(--textColor1);
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.callInfo > * {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-04 17:09:27 -08:00
|
|
|
.facePile {
|
|
|
|
|
margin-top: 8px;
|
2021-12-07 17:59:55 -08:00
|
|
|
}
|
|
|
|
|
|
2021-12-10 14:01:55 -08:00
|
|
|
.copyButtonSpacer,
|
2021-12-07 17:59:55 -08:00
|
|
|
.copyButton {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
}
|
2021-12-09 12:58:30 -08:00
|
|
|
|
2021-12-10 14:01:55 -08:00
|
|
|
.copyButton {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 12px;
|
|
|
|
|
right: 12px;
|
|
|
|
|
}
|
|
|
|
|
|
2021-12-09 12:58:30 -08:00
|
|
|
.callList {
|
2021-12-10 10:54:18 -08:00
|
|
|
display: grid;
|
2022-01-04 17:09:27 -08:00
|
|
|
grid-template-columns: repeat(auto-fill, 329px);
|
|
|
|
|
max-width: calc((329px + 24px) * 3);
|
|
|
|
|
width: calc(100% - 48px);
|
2021-12-09 12:58:30 -08:00
|
|
|
gap: 24px;
|
2022-01-04 17:09:27 -08:00
|
|
|
padding: 0 24px;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-bottom: 24px;
|
2021-12-09 12:58:30 -08:00
|
|
|
}
|