I have been trying to adjust the height of a td element using material design lite and applying mdl-data-table__cell--non-numeric. Despite adding height:20px directly to the selector in material.min.css file, I did not see any change.
.mdl-data-table__cell--non-numeric{text-align:left; height:20px;}
Furthermore, I attempted to create a new selector called .padtd and apply it to the specific columns that require adjustment, but once again, there was no visible difference:
.padtd{
height: 20px;
}
Can someone please provide guidance on how to effectively control the height using .mdl-data-table__cell--non-numeric?