В дополнение к Tabrez Ahmed s отличный ответ: если вы хотите установить ширину 100%
соответственно 100vw
, вам нужно добавить следующее в styles.css избегать левого и правого пробелов:
.custom-width {
width: 100vw;
}
.mat-bottom-sheet-container-large, .mat-bottom-sheet-container-medium, .mat-bottom-sheet-container-xlarge {
/* unset maximum width */
max-width: unset !important;
}
.mat-bottom-sheet-container-large, .mat-bottom-sheet-container-medium, .mat-bottom-sheet-container-xlarge {
/* remove border radius */
border-top-left-radius: 0 !important;
border-top-right-radius: 0 !important;
}