I have an angular component with the JS DataTable within it.
The html for the component is similar to this:
<h3>Test</h3>
<table class="table table-striped table-bordered table-hover" #table id="table">
<thead>
<tr>
<th *ngFor="let column of columns">{{column.name}}</th>
</tr>
</thead>
</table>
I have a css file for the component:
h3 {
color: blue;
}
.paginate_button {
padding: 100px;
}
Any styling I add for the table isn't applied but the styling for the h3 is!
If I add the .paginate_button style to the global styles.css the style is applied.
What am I missing?
paginate_buttonCSS Class in your Template?