Added back overflow-y scroll to allow users to scroll through chat messages. (#10923)

This commit is contained in:
Nick Taylor 2020-10-19 10:16:13 -04:00 committed by GitHub
parent 0e7d4b260b
commit 51c35ee6e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -244,7 +244,9 @@
font-size: var(--fs-base);
flex-grow: 1;
height: 300px;
overflow-y: hidden;
// Setting it to scroll so there is no jump when it's auto. Also, since it's chat,
// it will almost always need scrolling right away.
overflow-y: scroll;
overflow-x: hidden;
text-align: left;
overscroll-behavior-y: contain;