We need help in changing the scrollbar in the Select component from Angular Material.
The following demo was implemented.
https://stackblitz.com/angular/bxbvndrp
Because, when you using Angular one common attribute will be rendered in DOM like ng-content which will over write your class properties written in CSS, so try this code this will eliminate native Angular styles to use in application.
Go to the Component,
import {ViewEncapsulation} from '@angular/core';
Then
@Component({
.....
.....
encapsulation: ViewEncapsulation.None
})
Then your styles will taken by browser.