Utilizing bootstrap-vue.js, I created a tab that looks like this: https://i.sstatic.net/EW76k.png
The default color of the tab title doesn't fit with my project theme, so I attempted to change it. I found information on how to modify the tab title in the official documentation at . Following the instructions, I modified my code as follows:
<b-tab title="Transaction History" title-item-class="tab-title-class">
Here is the CSS style I used:
.tab-title-class {
color: #FF0000 !important;
}
Unfortunately, the changes did not take effect. Can you help me troubleshoot this issue? Thank you.