I am trying to position the modal in the center of the screen always.
To do so , I added the following CSS class to the modal :
.modal-position {
position: fixed;
left: 50% !important;
top: 50% !important;
transform: translate(-50%, -50%);
}
But its not getting exactly centered and on small screen size a vertical scroll bar appears beside it though there is enough space for the modal.
JS fiddle for the same : https://jsfiddle.net/86n9pbat/