Reputation: 7
i want to disable scroll bar for md-autocomplete autosuggestion drop down.Is there any css or attribute way to do it?
Upvotes: 0
Views: 1950
Reputation: 144
I could disable the vertical scrollbar by adding a new class to global styles.scss :
.mat-autocomplete-panel.max-height-panel {
max-height: 100%;
}
... and set it to the Material component using the classList directive :
<mat-autocomplete #auto="matAutocomplete" class="max-height-panel" classList="max-height-panel" panelWidth="300px">
Upvotes: 0