While working with React-Bootsrap ProgressBar, I couldn't help but notice that the component aligns its label based on its value: Check out this progress-bar example
Is it possible to center the label regardless of its value? Here's an example of what I'm aiming for: (random example)
This is my component:
<ProgressBar
now={....}
label={....}
className={....}
/>
This is how it looks like in browser dev tools:
<div class="..... progress">
<div role="progressbar" class="progress-bar" aria-valuenow="40" aria-valuemin="0" aria- valuemax="100">
dummy
</div>
</div>
I've attempted to style the progress and progress-bar classes, but I can't seem to style the text inside