Looking for a button with white text on a dark-blue background
Find the code in xxx.vue
<b-dropdown text="user" right variant="blue" class="signout-button">
<b-dropdown-item @click="toMain()">sign out</b-dropdown-item>
</b-dropdown>
Here is the style:
.bg-blue {
}
.signout-button {
border-radius: 10px;
color: white !important;
background-color: #183450;
border-color: #183450;
border-style: solid;
}
The final result should resemble this:
https://i.sstatic.net/oo553.png
Please note that there may be some text backing issues to address