Similar question to this one here:
Prevent BODY from scrolling when a modal is opened
.modal{
-webkit-overflow-scrolling: touch;
overflow-y: auto;
}
body.modal--open{
overflow:hidden;
}
The above CSS works fine, but the problem is when the user focuses on an input field within the modal the body scrolls again. Is there something that can be done to prevent this? Thanks!