Disable vertical scroll bar for md-autocomplete autosuggestion drop down

1.7k Views Asked by At

i want to disable scroll bar for md-autocomplete autosuggestion drop down.Is there any css or attribute way to do it?

2

There are 2 best solutions below

1
Billy Fischbach On

Give this a try. overflow-y: hidden;

0
Patrick L On

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">