I have been working on creating a card component with Vue Bootstrap, but I've run into an issue. The card header and body seem to have excessive padding around them. If I remove the b-card element and only use b-card-header and b-card-body, it looks like a standard Bootstrap card, but without any margin around the header and body. What can I do to remove the padding around the header and body?
<b-card>
<b-card-header v-b-modal.modalBox class="border-1">
<div>
<span>Header</span>
</div>
</b-card-header>
<b-card-body>
<div>
Body text lorem ipsum
</div>
</b-card-body>
</b-card>