Is there a way to change the default active color for button text in a toolbar using CSS?
v-btn(:to="item.path" active-class="v-btn--active toolbar-btn-active") {{item.meta.title}}
I attempted to override it with this custom class:
.toolbar-btn-active {
background-color: white;
&::before {
background-color: white;
}
.v-btn__content {
color: red !important;
}
}
However, only the background color is being changed. How can I update the button text color as well?
This is what the HTML looks like:
<a href="/document" class="v-btn v-btn--active toolbar-btn-active">
<div class="v-btn__content">Document</div>
</a>