25 lines
468 B
SCSS
25 lines
468 B
SCSS
.chat-message-thread-indicator {
|
|
grid-template-areas:
|
|
"avatar info info participants"
|
|
"excerpt excerpt excerpt replies";
|
|
|
|
.chat-thread-participants {
|
|
.avatar {
|
|
width: 22px;
|
|
height: 22px;
|
|
}
|
|
}
|
|
|
|
&__last-reply-excerpt {
|
|
white-space: wrap;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
margin-top: 0.5rem;
|
|
margin-right: 0.25rem;
|
|
}
|
|
&__replies-count {
|
|
grid-area: replies;
|
|
}
|
|
}
|