Is there any way to change the width?
I tried using the Width
property, but there was no change.
Current width (default): 600px
await dialogService.OpenAsync("Adição de Tarefa", modal =>
@<div>
... rest of code
</div>
, new DialogOptions()
{
CloseDialogOnOverlayClick = true,
AutoFocusFirstElement = true,
CloseDialogOnEsc = true,
Width = "800px"
});
}