I'm attempting to get a 2 column grid working with boostrap flex that takes the entire page height. For some reason, this code isn't filling 100% of the page.
the body tag has a width and height of 100%. I've included the snippet below. No other CSs has been created.
<div class="d-flex flex-row w-100 h-100 border">
<div class="d-flex flex-column h-100 border ">
test
</div>
<div class="d-flex flex-column h-100 border ">
test
</div>
</div>