I want to reduce height of options inside 'mat-select'
<mat-form-field appearance="fill">
<mat-select name="departureTime" ngModel>
<mat-option *ngFor="let option of options" [value]="option">
{{ option | time }}
</mat-option>
</mat-select>
</mat-form-field>
Inside this select, user has too choose time of the day but because the height of each option is so high, one will have to scroll ages to reach their desired value.