22 lines
433 B
SCSS
22 lines
433 B
SCSS
.chat-thread-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
@include chat-height(env(safe-area-inset-bottom));
|
|
|
|
&__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;
|
|
}
|
|
}
|