Is it possible to center align text in the uib-progressbar
? I attempted using position:absolute
, but I would like to display a list of progress bars in a UI grid that includes scrollable content. The goal is for the text to remain fixed while the progress bars scroll as needed.
Template
<uib-progressbar animate="false" value="30">
<span class="content">30% (3/10)</span>
</uib-progressbar>
Style
.progress-bar .content {
white-space: nowrap;
position: absolute;
left: 23vh; /* adjustment based on alignment */
}