Enable scrolling for modal

Enable scrolling for modal

To enable scrolling for modal, add this to .modal in Modal.module.css:

max-height: calc(100vh - 210px); 
// max-height: 80vh;
overflow-y: auto;

We should replace overflow: scroll in both files by overflow: auto, to avoid ugly scroll bars on Windows, but this doesn't change the functionality.