I want to reset the width and height of Angular Material datepicker in Angular 6.
I have checked the classes for the datepicker element in chrome and used that as below
.mat-datepicker-content .mat-calendar{
width: unset !important;
height: unset !important;
}
When I change properties in chrome it is reflected in UI but when I add it in code it is not applied on DatePicker.
I have used Datepicker in Angular Material Model Component.
Please help.