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

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/_progress.scss')
-rw-r--r--assets/stylesheets/bootstrap/_progress.scss10
1 files changed, 4 insertions, 6 deletions
diff --git a/assets/stylesheets/bootstrap/_progress.scss b/assets/stylesheets/bootstrap/_progress.scss
index f7491a6..efbb440 100644
--- a/assets/stylesheets/bootstrap/_progress.scss
+++ b/assets/stylesheets/bootstrap/_progress.scss
@@ -5,21 +5,19 @@
.progress {
display: flex;
+ height: $progress-height;
overflow: hidden; // force rounded corners by cropping it
font-size: $progress-font-size;
- line-height: $progress-height;
- text-align: center;
background-color: $progress-bg;
@include border-radius($progress-border-radius);
- @include box-shadow($progress-box-shadow);
}
.progress-bar {
- height: $progress-height;
- line-height: $progress-height;
+ display: flex;
+ align-items: center;
+ justify-content: center;
color: $progress-bar-color;
background-color: $progress-bar-bg;
- @include transition($progress-bar-transition);
}
.progress-bar-striped {