0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

Merge pull request #19214 from twbs/label-font-size

Add $label-font-size variable in the name of not hardcoding values
This commit is contained in:
Mark Otto 2016-02-16 20:23:22 -08:00
commit 57a310c3d3
2 changed files with 2 additions and 1 deletions

View File

@ -6,7 +6,7 @@
.label {
display: inline-block;
padding: $label-padding-y $label-padding-x;
font-size: 75%;
font-size: $label-font-size;
font-weight: $label-font-weight;
line-height: 1;
color: $label-color;

View File

@ -619,6 +619,7 @@ $label-danger-bg: $brand-danger !default;
$label-color: #fff !default;
$label-link-hover-color: #fff !default;
$label-font-size: 75% !default;
$label-font-weight: bold !default;
$label-padding-x: .4em !default;
$label-padding-y: .25em !default;