19 lines
337 B
SCSS
19 lines
337 B
SCSS
|
/* Badges */
|
||
|
|
||
|
.badge {
|
||
|
border-radius: 20px;
|
||
|
font-size: 12px;
|
||
|
line-height: 1;
|
||
|
padding: .375rem .5625rem;
|
||
|
font-weight: normal;
|
||
|
&.badge-pill {
|
||
|
border-radius: 10rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*Badge outlined variations*/
|
||
|
@each $color, $value in $theme-colors {
|
||
|
.badge-outline-#{$color} {
|
||
|
@include badge-outline-variations($value);
|
||
|
}
|
||
|
}
|