Closed arjenrschat closed 3 years ago
Scroll behavior is broken in Firefox due to different way it implements flexbox. Resulting in a double scrollbar and the window is not auto scrolled to the bottom when a client messages.
Cause:
display: flex;
flex-direction: column; }
Fix:
flex-direction: column; } body, html { display: flex; flex-direction: row; }
Tested in Firefox, Chrome and Safari
thanks @arjenrschat! i think this should be fixed now :) can you verify for me?
thanks @reichert621 works great.
Scroll behavior is broken in Firefox due to different way it implements flexbox. Resulting in a double scrollbar and the window is not auto scrolled to the bottom when a client messages.
Cause:
__next, body, html {
flex-direction: column; }
Fix:
__next{
flex-direction: column; } body, html { display: flex; flex-direction: row; }
Tested in Firefox, Chrome and Safari