Skip to content

Commit

Permalink
fix(progress): update progressbar font-size new var in bootstrap Alph…
Browse files Browse the repository at this point in the history
…a.6 impact on the progressbar height itself
  • Loading branch information
Lausselloic committed Jan 13, 2017
1 parent f027f6d commit 406f8b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scss/_custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ $alert-danger-border: $brand-danger;
// Progress bars

$progress-height: ($spacer-y * 2);
$progress-font-size: .75rem !default;
$progress-font-size: 1rem;
$progress-bg: $gray-light-o;
$progress-border-radius: $border-radius;
$progress-box-shadow: none;
Expand Down
7 changes: 6 additions & 1 deletion scss/_progress.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,14 @@
display: block;
width: 100%;
// Boosted mod
height: $spacer-y; // todo: make a new var for this
font-size: $font-size-sm;
line-height: ($progress-height / 2);
// end mod
}
// Boosted mod
.progress-bar {
height: ($progress-height / 2);
}
}

// Striped
Expand Down

0 comments on commit 406f8b3

Please sign in to comment.