What is the best way to set/override a custom width for a modal?
It seems ng-bootstrap currently supports
size: \'sm\' | \'lg\'
Add a argument class: 'modal-lg'
class: 'modal-lg'
open() { const modalRef = this.modalService.open(ModelComponent, { class: 'modal-lg', backdrop: 'static' }); } }