The default select box of angular material is using the following class:
.mat-select-panel{
min-width: 112px;
max-width: 280px;
overflow: auto;
-webkit-overflow-scrolling: touch;
padding-top: 0;
padding-bottom: 0;
max-height: 230px;
min-width: 100%;
}
However, I want to change the max-height to something else? How can i do so?