According to the MatAutocomplete documentation, there is a classList
input to style the panel.
@Input('class') classList: string | string[]
Takes classes set on the host mat-autocomplete element and applies them to the panel inside the overlay container to allow for easy styling.
When I do <mat-autocomplete #auto="matAutocomplete" classList="test-class">
I expected that I would see the test-class added to the mat-autocomplete-panel? But this does not work.
Can someone please explain how this input is to be used?