Struggling to customize the look of bootstrap-vue breadcrumbs? I've attempted various combinations of classes and styles in the breadcrumb and breadcrumb-item tags, but to no avail. Every time, I end up with blue or grey text on a light grey background.
<b-breadcrumb style="nothing works" :items="crumbs">
<b-breadcrumb-item class="nothing works" v-for="(item, i) in crumbs" :key="i" :to="item.to">{{item.text}}</b-breadcrumb-item>
</b-breadcrumb>
My CSS skills are limited, but I believe there's a way to target specific elements in the generated html to adjust the style as needed.