mat select panel wrap change position

Solutions on MaxInterview for mat select panel wrap change position by the best coders in the world

showing results for - "mat select panel wrap change position"
Calie
04 Aug 2020
1<mat-select placeholder="Language" disableOptionCentering panelClass="myPanelClass">
2    <mat-option *ngFor="let locale of locales" [value]="locale">
3        {{locale}}
4    </mat-option>
5</mat-select>
6
Jacob
04 Mar 2016
1.myPanelClass{
2    margin-top: 30px !important; 
3}
4