I want to vertically center the text in the second column. I've tried all the usual advice: my-auto, align-items-center, etc but I can't seem to get it right.
Can anyone point me in the right direction?
<div class="row justify-content-center">
<div class="col-1" style="background-color: #cfdc27">
</div>
<div class="col-10 d-flex">
<div class="my-auto">
<h4>Title goes here</h4>
<p class="text-muted">Subtitle goes here.</p>
</div>
</div>
</div>