I'm using bootstrap-vue.js to create a tab. The result is like this
I just want change the tab title color because it's using default color from my project. And from the bootstrap-vue.js official link (https://bootstrap-vue.js.org/docs/components/tabs) there is a title-item-class for making any change in the tab title. So I crate the code like this :
<b-tab title="Transaction History" title-item-class="tab-title-class">
and my css :
.tab-title-class {
color: #FF0000 !important;
}
But it doesn't give any effect. So what is the problem here ? Thanks in advance.