I have already searched for a solution to this question, but despite trying everything, I have not been able to find one. Therefore, I am asking again, my apologies :-).
My challenge is to make a row fill all the remaining screen space on the page, but no matter what I do, it remains at its initial size.
Please note that the map fits the size of the div.
Below is the code I am currently using:
<div class="row">
<div class="col-xl-12 col-md-12 mb-12 col-lg-12 ">
<div class="card shadow mb-4 h-100">
<div class="card-header py-3 d-flex flex-row align-items-center justify-content-between">
<h6 class="m-0 font-weight-bold text-primary">
Carte des balises
</h6>
</div>
<div class="card-body">
<div id="map"></div>
</div>
</div>
</div>
</div>
Here is a snapshot of the page's appearance: https://i.sstatic.net/7ydMz.png
If anyone can provide me with some guidance or tips, I would greatly appreciate it!
Thank you in advance :)