Can't push b-button down to the bottom of the b-card.
I've tried:
Bootstrap class= flex-box like i would with just a plain <div>
(This example below)
Inline styling with flex box.
Using b-card-footer with button inside
Making just the b-botton a standard html button with bootstrap btn class
Adding an additional b-row below b-card and adding the mt-auto to that
Edit..Just tried this as well...
<b-row align-v="end">
<b-button class="mt-auto" href="#" variant="primary"></b-button>
</b-row>
<section>
<b-card no-body class="overflow-hidden" style="max-width: 540px;">
<b-row no-gutters>
<b-col md="6">
<b-card-img src="https://picsum.photos/400/400" class="rounded-0"></b-card-img>
</b-col>
<b-col md="6">
<b-card-body class="d-flex flex-column">
<h2>Course Check List</h2>
<b-card-text>
Here is the description of the course
</b-card-text>
<b-button class="mt-auto" href="#" variant="primary">Why Aren't You Working</b-button>
</b-card-body>
</b-col>
</b-row>
</b-card>
</section>