Disable Scrolling for a Mat Dialog in the backdrop
Am trying to disable page scrolling when Mat Dialog is opened . Tried overflow:hidden but it didn't work . TS: const dialogConfig = new MatDialogConfig(); dialogConfig.autoFocus = true; dialogConfig.backdropClass = "backdropBackground"; dialogConfig.hasBackdrop = true; dialogConfig.panelClass = "custom-dialog-container"; const dialogRef = this.dialog.open(ModalComponent, dialogConfig);