Kelby Lu

Results 2 comments of Kelby Lu

+1, I'm still having this issue with v3.5.1. Upon opening the window, the background scrolls all the way to the bottom. Really breaks the UX flow when you close the...

@webmastervishal I was able to stop the scrolling to top/bottom on open behavior by adding `position: fixed` to `.ReactModalPortal` CSS: ``` .ReactModal__Body--open { position: static; overflow-y: scroll; } .ReactModal__Html--open {...