Hello, I am currently using materializecss in conjunction with Angular 6. Just to clarify, I am solely utilizing the materializecss library and not ng2-materialize.
My issue arises when attempting to customize the tab indicator background color by modifying the CSS within my component. I have tried using !important as well, but unfortunately, it has not resolved the problem.
<div class="row">
<div class="col s12 m12 l12 xl12">
<ul class="tabs tabs-fixed-width" id="chartstabs">
<li class="tab" *ngFor="let view of views">
<a href="#tab{{view.id}}" (click)="loadTab(view)">{{view.name}}</a>
</li>
</ul>
</div>
Below is the snippet of my current CSS code:
.tabs {
overflow-x: hidden !important;
}
.tabs .indicator {
background-color: blue !important;
}
Your help is greatly appreciated. Thank you.