Progress bar with a customized label inside:
<div id="progress" class="progress mb-1" style="height: 20px;">
<div class="progress-bar" role="progressbar" style="width: 5.0%" aria-valuenow="5.0" aria-valuemin="0" aria-valuemax="100">1/20</div>
</div>
While it functions properly, the label is not fully visible on the left side for smaller screens:
https://i.sstatic.net/upKbG.png
I have attempted various solutions (setting a fixed width of 2 for the bar, experimenting with different colors), but I am curious if there exists a more elegant fix for this issue?