2017-09-20 15:47:57 +02:00
|
|
|
@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;
|
|
|
|
|
2020-07-15 10:48:11 +02:00
|
|
|
&.baseline {
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
2017-09-20 15:47:57 +02:00
|
|
|
&.warning {
|
|
|
|
background-color: $orange;
|
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
}
|
2023-06-08 15:07:43 +02:00
|
|
|
|
|
|
|
.badge-group {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.fr-badge {
|
|
|
|
margin-right: $default-spacer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fr-badge:last-child {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
}
|