Can anyone help me with changing the colour of mat-select
box and how to style the box to have rounded corners.
I tried by giving it the background-colour
property but it is not affecting my element.
html
<mat-form-field appearance="outline">
<mat-select class="topunit">
<mat-option *ngFor="let x of filteredData [value]="x">{{x.name}} - {{x.place}}
</mat-option>
</mat-select>
</mat-form-field>
css
.topunit{
background-color: white;
margin-top: 5%;
padding: 0 0.75em 0 0.75em;
width: 75%;
align-items: baseline;
border-radius: 20px;
}