[Vuejs]-How to change text color in bootstrap-cue

2👍

For example should do the job, as b-dropdown will generate that button tag inside.

.signout-button button{
  color: red;
}

1👍

Well, you need styling on the <b-dropdown> compiles it converts to button tag.

.signout-button button {
  color: green;
}

Here is working Jsfiddle

Hope this helps!

Leave a comment