Is there a way to center the dialog windows of the Alertify Js plugin? http://alertifyjs.com
I have seen there is a property called position, but it does not support center position.
Thank you all.
If you modify the css you can achieve this:
.alertify .ajs-dialog {
top: 50%;
transform: translateY(-50%);
margin: auto;
}