papercups-io / chat-widget

Papercups chat widget
https://app.papercups.io/demo
MIT License
257 stars 93 forks source link

Widget scrolling broken in Firefox 82 OSX #67

Closed arjenrschat closed 3 years ago

arjenrschat commented 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.

image

Cause:

__next, body, html {

display: flex;

flex-direction: column; }

Fix:

__next{

display: flex;

flex-direction: column; } body, html { display: flex; flex-direction: row; }

Tested in Firefox, Chrome and Safari

reichert621 commented 3 years ago

thanks @arjenrschat! i think this should be fixed now :) can you verify for me?

arjenrschat commented 3 years ago

thanks @reichert621 works great.