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.
plain-ui/src/scss/components/_badge.scss

29 lines
511 B

/**
*
*
*
*
*/
@mixin plain-ui__component__badge() {
.badge {
display: inline-block;
background-color: lighten($plain-ui__primary-light, 10%);
color: white;
font-size: 0.85rem;
padding: 0.4em 0.8em;
border: 1px solid $plain-ui__primary-light;
border-radius: 2px;
&--round {
display: inline-flex;
justify-content: center;
border-radius: 50%;
width: 2.5em;
}
}
}