2023-06-15 08:49:27 +08:00
|
|
|
.chat-thread-participants {
|
|
|
|
&__other-count {
|
|
|
|
font-size: var(--font-down-2);
|
2023-07-04 16:32:09 +08:00
|
|
|
color: var(--primary-high);
|
2023-06-26 20:47:13 +08:00
|
|
|
white-space: nowrap;
|
2023-09-01 00:09:41 +08:00
|
|
|
margin-left: 0.25rem;
|
2023-06-15 08:49:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&__avatar-group {
|
|
|
|
display: flex;
|
2023-06-26 20:47:13 +08:00
|
|
|
align-items: center;
|
2023-06-15 08:49:27 +08:00
|
|
|
justify-content: flex-end;
|
|
|
|
|
2023-07-10 15:36:20 +08:00
|
|
|
.chat-user-avatar__container {
|
2023-06-26 20:47:13 +08:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-06-15 08:49:27 +08:00
|
|
|
.chat-user-avatar {
|
|
|
|
width: auto !important;
|
|
|
|
|
|
|
|
.avatar {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-26 20:47:13 +08:00
|
|
|
|
|
|
|
@container (max-width: 400px) {
|
|
|
|
.chat-thread-participants {
|
|
|
|
&__avatar-group {
|
2023-07-04 16:32:09 +08:00
|
|
|
flex-direction: row;
|
2023-06-26 20:47:13 +08:00
|
|
|
justify-content: flex-start;
|
2023-07-10 15:36:20 +08:00
|
|
|
|
2023-06-26 20:47:13 +08:00
|
|
|
.chat-user-avatar {
|
2023-07-04 16:32:09 +08:00
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: -10px;
|
2023-06-26 20:47:13 +08:00
|
|
|
}
|
|
|
|
.avatar {
|
|
|
|
border: 1px solid var(--primary-very-low);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|