I was experimenting with creating a full screen modal using Bootstrap, but I ran into an issue where I couldn't scroll when there was too much content. This is the code I used:
.modal-full {
min-width: 100%;
margin: 0;
}
.modal-full .modal-content {
min-height: 100vh;
}
Check out the JSFIDDLE.