While exploring the documentation and issues of Bootstrap v4 (here), I have not come across any indication of plans to support a property like `flex-grow`, which would allow for a layout as shown below:
<div class="d-flex">
<div class="flex-grow">
I use all the space left
</div>
<div>
I am a small text on the right
</div>
</div>
This is the specific layout I hope to achieve:
The export button remains fixed on the right, while the navigation button expands to fill all available space, creating a clean appearance.
Is it currently feasible to create such a layout within Bootstrap? If not, is it advisable to attempt so? While CSS workarounds are possible, my goal is to find a straightforward solution utilizing only Bootstrap classes for consistency.