2023-06-15 08:49:27 +08:00
|
|
|
.chat-message-thread-indicator {
|
2023-06-26 20:47:13 +08:00
|
|
|
grid-template-areas:
|
|
|
|
"avatar info replies participants"
|
|
|
|
"avatar excerpt excerpt excerpt";
|
2023-06-15 08:49:27 +08:00
|
|
|
|
2023-06-26 20:47:13 +08:00
|
|
|
&__replies-count {
|
|
|
|
display: flex;
|
|
|
|
align-self: center;
|
2023-06-15 08:49:27 +08:00
|
|
|
}
|
2023-06-26 20:47:13 +08:00
|
|
|
}
|
2023-06-15 08:49:27 +08:00
|
|
|
|
2023-06-26 20:47:13 +08:00
|
|
|
@container (max-width: 400px) {
|
|
|
|
.chat-message-thread-indicator {
|
|
|
|
grid-template-areas:
|
|
|
|
"avatar info info participants"
|
|
|
|
"excerpt excerpt excerpt replies";
|
|
|
|
&__replies-count {
|
|
|
|
align-self: flex-start;
|
|
|
|
grid-area: replies;
|
|
|
|
justify-content: flex-end;
|
2023-06-15 08:49:27 +08:00
|
|
|
}
|
2023-06-26 20:47:13 +08:00
|
|
|
&__last-reply-excerpt {
|
2023-06-15 08:49:27 +08:00
|
|
|
white-space: wrap;
|
|
|
|
display: -webkit-box;
|
2023-06-26 20:47:13 +08:00
|
|
|
-webkit-line-clamp: 2;
|
2023-06-15 08:49:27 +08:00
|
|
|
-webkit-box-orient: vertical;
|
2023-06-26 20:47:13 +08:00
|
|
|
margin-top: 0.5rem;
|
|
|
|
margin-right: 0.25rem;
|
2023-06-15 08:49:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|