mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 18:34:52 +08:00
15 lines
328 B
SCSS
15 lines
328 B
SCSS
|
.chat-messages-scroller {
|
||
|
flex-grow: 1;
|
||
|
overflow-y: scroll;
|
||
|
overscroll-behavior: contain;
|
||
|
display: flex;
|
||
|
flex-direction: column-reverse;
|
||
|
z-index: 1;
|
||
|
margin: 0 1px 0 0;
|
||
|
will-change: transform;
|
||
|
@include chat-scrollbar();
|
||
|
min-height: 1px;
|
||
|
box-sizing: border-box;
|
||
|
transition: padding-top 0.2s ease-in-out;
|
||
|
}
|