how to zero padding and margin on angular mat dialog white stripe under code example
Example 1: Get rid of white space around Angular Material modal dialog
import {ViewEncapsulation} from '@angular/core';
@Component({
.....,
encapsulation: ViewEncapsulation.None
})
Example 2: Get rid of white space around Angular Material modal dialog
.custom-dialog-container .mat-dialog-container {
/* add your styles */
}