Added back overflow-y scroll to allow users to scroll through chat messages. (#10923)
This commit is contained in:
parent
0e7d4b260b
commit
51c35ee6e8
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue