I need help reducing the height of a mat field that includes a mat-select in Angular v15.
The code is directly from the material components documentation, with no alterations. It consists of a default table and default outline formfield.
<mat-form-field appearance="outline">
<mat-select>
@for (food of foods; track food) {
<mat-option [value]="food.value">{{ food.viewValue }}</mat-option>
}
</mat-select>
</mat-form-field>
https://i.stack.imgur.com/0aisY.png
My goal is to achieve a layout similar to this example image, while overlooking any text cut-offs. https://i.stack.imgur.com/D1PTv.png