I have this dropdown menu with bootstrap-vue in my nuxtjs app:
<div>
<b-dropdown class="dropdown" id="dropdown-1" text="Dropdown Button" class="m-md-2">
<b-dropdown-item>First Action</b-dropdown-item>
<b-dropdown-item>Second Action</b-dropdown-item>
<b-dropdown-item>Third Action</b-dropdown-item>
<b-dropdown-divider></b-dropdown-divider>
<b-dropdown-item active>Active action</b-dropdown-item>
<b-dropdown-item disabled>Disabled action</b-dropdown-item>
</b-dropdown>
</div>
I want to be able to change the border and background color of my dropdown button through this code:
<style scoped>
.dropdown {
border: solid 0px;
background: white;
}
</style>
Please note that the style MUST be scoped. What am I doing wrong and how can I change style of my dropdown button?

<button>child toclass="dropdown"that has the styling and it can be modified through browser but I dunno how I can reach and modify it through my code!