使用打开方法时 ngx-modialog 不居中

ngx-modialog not center when use open method

我正在使用 ngx-modialog 库在 agular 7 中打开一个模式,如下所示

import { Modal } from 'ngx-modialog/plugins/bootstrap';

this.modal.open(WorkloadDetailHistoryModalComponent, overlayConfigFactory({
          size: 'lg',
          scope: this
        }));

但是模式出现在页面的一个角落而不是中心。 我怎样才能让它居中?

让我添加一个自定义 class 但我还没成功:(

感谢您的帮助

已解决!

在overlayConfigFactory中添加参数'dialogClass' ¬¬

this.modal.open(WorkloadDetailHistoryModalComponent,
 overlayConfigFactory({
       size: 'lg',
       scope: this,
       dialogClass: 'modal-dialog'
     }));