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