Alertify JS 中心对话框 window

Alertify JS Center dialog window

有没有办法让 Alertify Js 插件的对话框 windows 居中? http://alertifyjs.com

我看到有一个属性叫position,但是不支持center position

谢谢大家

如果你修改css你可以实现这个:

.alertify .ajs-dialog {
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
}

之前:

之后: