UX: prevents scroll in chat to propagate to parents (#20347)

Prior to this fix, scrolling in the drawer for example, would also scroll the full page when reaching bottom of available messages.
This commit is contained in:
Joffrey JAFFEUX 2023-02-17 13:39:51 +01:00 committed by GitHub
parent e381a55533
commit a0b83dac86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -277,6 +277,7 @@ $float-height: 530px;
.chat-messages-scroll {
flex-grow: 1;
overflow-y: scroll;
overscroll-behavior: contain;
scrollbar-color: var(--primary-low) transparent;
transition: scrollbar-color 0.2s ease-in-out;
display: flex;