I have the following code in Angular 1.X:
<md-input-container style="margin:0; overflow-y: hidden !important;">
<label>STATUS</label>
<md-select style="overflow-y: hidden !important;" ng-model="query.filter.status">
<md-option ng-repeat="status in statuses" ng-value="
{{status.key}}"><span>{{status.val}}</span></md-option>
</md-select>
</md-input-container>
Currently when the item is selected a list with scroll of 7 items is opened. I've already tried putting max-width
high and overflow-y: hidden;
everywhere and there's no way.
In the documentation I have not found anything to disable the scroll.
Does anyone know what I'm missing?