This questions been asked a lot, but there are limited solutions for BootstrapVue.
I tried adding
.modal-backdrop{ display: none; z-index: -1; }
and I've also tried everything solution from here
So this is what the modal looks like current and the code for it is here
<template>
<div>
<b-button lg="5" variant="outline-primary" v-b-toggle.sidebar-1>
<img src="https://cdn0.iconfinder.com/data/icons/rounded-basics/24/rounded__menu-512.png" style="float: right; width: 25px;">
</b-button>
<b-sidebar id="sidebar-1" title="Options" left shadow>
<template>
<div class="px-3 py-2">
<h4 id="sidebar-no-header-title">Find out how to properly read and digest news from around the world, different sources safely by checking out Information</h4>
<b-button lg="3" class="pb-2" variant="light" @click="modalShow = !modalShow" block >Information</b-button>
<b-modal v-model="modalShow" data-backdrop="false">Hello From Modal!</b-modal>
<b-button lg="3" class="pb-2" variant="light" block >Credits</b-button>
<b-button lg="3" class="pb-2" variant="light" block >Contact me</b-button>
</div>
</template>
</b-sidebar>
</div>
So the modal is opened from a button in a sidebar. It also means that I cant exit or press ok/cancel since everything just goes secondary.
Thanks for any help