32 lines
572 B
SCSS
Executable File
32 lines
572 B
SCSS
Executable File
/* Badges */
|
|
|
|
.badge {
|
|
border-radius: .25rem;
|
|
font-size: .75rem;
|
|
font-weight: initial;
|
|
line-height: 1;
|
|
padding: .25rem 0.375rem;
|
|
font-family: $type1-semibold;
|
|
&.badge-pill {
|
|
border-radius: 10rem;
|
|
}
|
|
&.badge-fw{
|
|
min-width: 70px;
|
|
}
|
|
}
|
|
|
|
|
|
/*Badge variations*/
|
|
@each $color, $value in $theme-colors {
|
|
.badge-#{$color} {
|
|
@include badge-variations($value);
|
|
}
|
|
}
|
|
|
|
|
|
/*Badge outlined variations*/
|
|
@each $color, $value in $theme-colors {
|
|
.badge-outline-#{$color} {
|
|
@include badge-outline-variations($value);
|
|
}
|
|
} |