How to make scrollable mat-list
mat-list {
flex-grow: 1;
border: 3px solid green;
overflow: auto;
}
I'm sure that i've tried overflow: auto; yesterday (before posting the question) and it didn't worked. But today it works. I may have faced a caching issue related to ng cli or browser cache.
add the following css:
mat-list { overflow: auto; }