fix: use right font-weight for badges

This commit is contained in:
Kazhnuz 2019-11-05 14:26:55 +01:00
parent a4e62f5b7a
commit e1a1e5056a
3 changed files with 10 additions and 1 deletions

View File

@ -38,6 +38,7 @@
.btn { .btn {
@include button(); @include button();
box-shadow: $inset-shadow, $narrow-shadow; box-shadow: $inset-shadow, $narrow-shadow;
&:hover { &:hover {
box-shadow: $inset-shadow, $narrow-shadow; box-shadow: $inset-shadow, $narrow-shadow;
@include button(); @include button();
@ -101,6 +102,10 @@
/* 11.2 - Badges */ /* 11.2 - Badges */
.badge {
font-weight:400;
}
.badge { .badge {
&-blue { @include badge-color($color-blue, #FFF); } &-blue { @include badge-color($color-blue, #FFF); }
&-violet { @include badge-color($color-violet, #FFF); } &-violet { @include badge-color($color-violet, #FFF); }

View File

@ -1005,6 +1005,10 @@ a.list-group-item:hover {
} }
/* 11.2 - Badges */ /* 11.2 - Badges */
.badge {
font-weight: 400;
}
.badge-blue { .badge-blue {
background-color: #4e63c9; background-color: #4e63c9;
color: #FFF; color: #FFF;

File diff suppressed because one or more lines are too long