Thanks for the tip but that's not getting me anywhere either. I've tried it in the manners shown below based on your suggestion and the sample you provided. Neither way worked. The class just isn't getting applied.
Here is the class I'm trying to apply:
Class is found in component.scss
.igx-thead_center-and-middle-text {
display: --webkit-box;
-webkit-box-pack: center;
-webkit-box-align: center;
}
Here is the first way I tried it:
Applied in component.html
Here is the second way I tried it
Applied in component.ts
public theadCenter = {
"igx-thead_center-and-middle-text": true
};
Applied in component.html
Any other suggestions?