Size of Modal in Angular template for abp.io

155 views Asked by At

I can see that there are references to using size="Large" when using <abp-modal> in ABP.io commercial, however this does not seem to apply to Angular. Is there a way to specify a size for a modal?

Using ABP.io 7.3 currently.

1

There are 1 answers

0
Engincan Veske On BEST ANSWER

You can pass options to abp-modal as follows:

<abp-modal [(visible)]="visible" [busy]="modalBusy" [options]="{ size: 'sm' }">

Allowed size options are: 'sm' | 'lg' | 'xl' |


References