Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick H. Lauke <redux@splintered.co.uk>2022-11-13 02:24:13 +0300
committerPatrick H. Lauke <redux@splintered.co.uk>2022-11-13 02:24:13 +0300
commit0c55198d6cc62702fc7308ce2d91a159069579cb (patch)
tree6557e0608285f821892c38dfed0887c7e7f202f1
parent766a43cd13e2a9bd45d8f45dc7daa821c77fccef (diff)
Reintroduce deleted stylespatrickhlauke-issue36736
Turns out they're needed for correct positioning of text inside progress bar
-rw-r--r--scss/_progress.scss3
1 files changed, 3 insertions, 0 deletions
diff --git a/scss/_progress.scss b/scss/_progress.scss
index 05da791fa7..148c3815e8 100644
--- a/scss/_progress.scss
+++ b/scss/_progress.scss
@@ -31,6 +31,9 @@
}
.progress-bar {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
overflow: hidden;
color: var(--#{$prefix}progress-bar-color);
text-align: center;