Im trying to hide the strings that been added automatically by MatPaginator (Items per page: 1 1 – 1 of 2), I try to do the CSS way by setting display:none; or display:none !important; to the container classes but this didn't work:
.mat-paginator-page-size{
display: none !important;
}
.mat-paginator-range-label{
display: none !important;
}
I want only the next and previous arrows to show up without any other details.