2023-05-15 08:39:11 -04:00
|
|
|
.chat-thread-list {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
2023-05-16 12:46:14 -04:00
|
|
|
@include chat-height(env(safe-area-inset-bottom));
|
2023-05-15 08:39:11 -04:00
|
|
|
|
|
|
|
&__items {
|
|
|
|
overflow-y: scroll;
|
|
|
|
@include chat-scrollbar();
|
|
|
|
box-sizing: border-box;
|
|
|
|
flex-grow: 1;
|
|
|
|
overscroll-behavior: contain;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__no-threads {
|
|
|
|
@include thread-list-item;
|
|
|
|
margin: 0.5rem 0rem 0.5rem 0.5rem;
|
|
|
|
}
|
|
|
|
}
|