aks
aks

Reputation: 7

Disable vertical scroll bar for md-autocomplete autosuggestion drop down

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

Answers (2)

Patrick L
Patrick L

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

Billy Fischbach
Billy Fischbach

Reputation: 191

Give this a try. overflow-y: hidden;

Upvotes: 1

Related Questions