You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Label base style
|
|
@mixin label-base() {
|
|
border-radius: $border-radius;
|
|
line-height: 1.2;
|
|
padding: .1rem .15rem;
|
|
}
|
|
|
|
@mixin label-variant($color: $light-color, $bg-color: $primary-color) {
|
|
background: $bg-color;
|
|
color: $color;
|
|
}
|