0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-15 17:24:47 +08:00
discourse/plugins/chat/assets/stylesheets/common/chat-messages-scroller.scss
Jarek Radosz 28e00d9bfe
DEV: Update lint-configs and autofix issues (#31620)
This updates us to Prettier 3.x
2025-03-05 01:20:16 +01:00

18 lines
381 B
SCSS
Vendored

.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;
min-height: 1px;
box-sizing: border-box;
@include chat-scrollbar {
transition:
scrollbar-color 0.25s ease-in-out,
padding-top 0.2s ease-in-out;
}
}