react-modal
react-modal copied to clipboard
How to enable background page scrolling when modal is open
Summary:
Steps to reproduce:
1.Please help me out to enable scrolling background when the modal is open 2. when user load a page he can see the modal but i want that he can scroll the background whole page when the modal popup is open no need to minimize modal. 3.Thanks in advance
Hi @nahidbinazad, sorry for the delay.
I believe this is a one CSS property. You can check if the <body /> of your page contains overflow: hidden. If so, you can remove this line and your page will be able to scroll again.
Thanks Diasbruno
@nahidbinazad Let me know if you have solved this issue. Thank.
Alternatively, just add the following code into the global style.
body {
&.ReactModal__Body--open {
overflow: hidden;
height: 100vh;
}
}