I'm currently learning Bootstrap Vue and I'm trying to align an image on the right using a b-card header. The challenge I'm facing is that when I add the image, it disrupts the perfect size of the template header, causing the image to show a bit underneath but still aligning to the right. Here's the codepen link for reference: https://codepen.io/tone373/pen/JjeYazG
<b-card header-tag="header">
<template #header>
<h4>b-img</h4>
<b-img right src="https://picsum.photos/125/125/?image=58" alt="Right image"></b-img>
</template>
</b-card>