Why is my row going onto a second line when I shrink the width?
Here is a screenshot of the issue.
I am currently using bootstrap 5 for this and I am unsure how to fix it. Below is the code snippet:
Below is the desired look on mobile devices:
<div class="container-fluid fixed-bottom " style="margin-bottom: 16px;">
<div class="row align-items-center">
<div class="col" >
<div class="text-center bottomElement">
<img class="img-fluid bottomIcon" src="/assets/business.png" style="max-width:56px;" />
<p class="bottomText" style="color: white;">Business</p>
</div>
</div>
<div class="col">
<div class="text-center bottomElement">
<img class="img-fluid bottomIcon" src="/assets/calculator.png" style="max-width:56px;" />
<p class="bottomText" style="color: white;">Calculator</p>
</div>
</div>
<div class="col">
<div class="text-center bottomElement">
<img class="img-fluid bottomIcon" src="/assets/oogPermits.png" style="max-width:56px;" />
<p class="bottomText" style="color: white;">OOG Permits</p>
</div>
</div>
<div class="col">
<div class="text-center bottomElement">
<img class="img-fluid bottomIcon" src="/assets/services.png" style="max-width:56px;" />
<p class="bottomText" style="color: white;">Services</p>
</div>
</div>
<div class="col">
<div class="text-center bottomElement">
<img class="img-fluid bottomIcon" src="/assets/career.png" style="max-width:56px;" />
<p class="bottomText" style="color: white;">Career</p>
</div>
</div>
</div>
</div>