18 lines
312 B
SCSS
18 lines
312 B
SCSS
@import "colors";
|
|
@import "constants";
|
|
|
|
.badge {
|
|
padding: 0 5px;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
text-align: center;
|
|
white-space: nowrap;
|
|
border-radius: 100px;
|
|
background-color: rgba(0, 0, 0, 0.08);
|
|
vertical-align: top;
|
|
|
|
&.warning {
|
|
background-color: $orange;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|