-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Closed
Labels
featureThis issue represents a new feature or feature request rather than a bug or bug fixThis issue represents a new feature or feature request rather than a bug or bug fix
Description
Bug, feature request, or proposal:
Proposal
Use Case 1:
I have a dialog that I want to be full-bleed (in my case, it contains just a map)
this.dialog.open(MyMapDialogComponent, { containerClass: 'full-bleed' })
.mat-dialog.container.full-bleed {
padding: 0;
}
Use Case 2:
I want to make my dialog full screen:
this.dialog.open(MyBigDialogComponent, { containerClass: 'full-screen' })
.mat-dialog-container.full-screen {
max-width: none;
width: 100vw;
height: 100vh;
}
This wouldn't be too different from backdropClass
or snackbar's extraClasses
and it would solve #3209
morkro, kevinrusson and ViktorMedvedchuk
Metadata
Metadata
Assignees
Labels
featureThis issue represents a new feature or feature request rather than a bug or bug fixThis issue represents a new feature or feature request rather than a bug or bug fix