Recently I am learning angularjs. I have used bootstrap before. With jquery, I can easily change the position of the modal component position to make it vertical align. Now
You can use windowTopClass
property in the object argument for open
method.
https://angular-ui.github.io/bootstrap/
$uibModal.open({
...
...
windowTopClass: "modal-center-override"
});
with the respective CSS class override
.modal-center-override {
top: 50% !important;
transform: translateY(-50%) !important;
-webkit-transform: translateY(-50%) !important;
-moz-transform: translateY(-50%) !important;
-o-transform: translateY(-50%) !important;
}