collins-kiprotich/portfolio

Peer to peer code review

Opened this issue · 0 comments

It would be nice to prevent the background from scrolling while the popup window is open.

You can use JavaScript to implement this in the main.js file by settling main.style.overflowY = hidden when the popup is open.

main.style.filter = 'blur(8px)';

And reverting the overflow back to scroll when the popup window is closed.

main.style.filter = 'blur(0)';