I can't change padding of mat-menu-content. I can't access to it through simple css or ::ngdeep. Any ideas how to do it? I'm quite new to angular :(
everything is inside:
<div class="...">
<mat-menu>
//The rest of code is here, some *ngFor, sub menu
<mat-menu>
I want to make mat-menu-content padding 0px but I can't do it through simple css or ::ngdeep
.mat-menu-content:not(:empty) {
padding-top: 8px;
padding-bottom: 8px;
}