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

31 lines
590 B

/**
3 years ago
* <span class="badge">
* A
* </span>
*
* @author Björn Hase, me@herr-hase.wtf
3 years ago
* @license http://opensource.org/licenses/MIT The MIT License
* @link https://gitea.node001.net/tiny-components/plain-ui.git
*
*/
3 years ago
.badge {
display: inline-block;
3 years ago
background-color: var(--background);
3 years ago
color: var(--text-contrast);
3 years ago
font-size: 0.85rem;
3 years ago
padding: 0.4rem 0.8rem;
3 years ago
border: $border;
border-radius: $border-radius;
3 years ago
&--round {
display: inline-flex;
justify-content: center;
3 years ago
border-radius: 50%;
3 years ago
width: 2.8em;
}
}