How to adjust angular mat-table header height ? The table I am working on has column groups(main header and sub headers)

Viewed 281
1 Answers

Your problem is not with the <td> elements but with the <tr> ones. just add this:

tr.mat-header-row{
   height: 20px !important;
 }
Related