I\'m trying to create a modal dialog that has an fixed header and footer and that the content (in this case list of users) inside the modal dialog is scrollable...
My be
.modal-body{ max-height: calc(100vh - 200px); overflow-y: auto; }
this works for me
thanks