I am trying to use the first example of input groups using components from Bootstrap-Vue website
My Code is as below :
<div>
<b-input-group prepend="Search" class="mt-3">
<!-- inputbox is a child component -->
<inputBox></inputBox>
<b-input-group-append>
<b-button variant="outline-success">Button</b-button>
<b-button variant="info">Button</b-button>
</b-input-group-append>
</b-input-group>
</div>
My inputBox component code is as below:
<template>
<div>
<b-form-input></b-form-input>
</div>
</template>
When using the above code , my input box looks like this
instead of looking like below
How, can I make it occupy the entire width?