9 lines
248 B
SCSS
9 lines
248 B
SCSS
|
.badge {
|
||
|
@include shape-style($button_large);
|
||
|
line-height: 1.5em;
|
||
|
padding-left: $button_small;
|
||
|
padding-right: $button_small;
|
||
|
text-decoration: none !important;
|
||
|
background-color: var(--accent-color);
|
||
|
color: var(--text-color-contrast);
|
||
|
}
|