38 lines
545 B
SCSS
38 lines
545 B
SCSS
.label {
|
|
align-items: center;
|
|
background: #36383C;
|
|
border-radius: 3px;
|
|
color: #fff;
|
|
display: flex;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
height: 28px;
|
|
margin: 0 0 4px 4px;
|
|
padding: 0 8px;
|
|
|
|
&--green {
|
|
background: #31B76A;
|
|
}
|
|
|
|
&--red {
|
|
background: #E34F56
|
|
}
|
|
|
|
&--white {
|
|
background: #fff;
|
|
color: #5e6d7a;
|
|
|
|
svg {
|
|
fill: #5e6d7a;
|
|
}
|
|
}
|
|
}
|
|
|
|
.label-text-with-icon {
|
|
margin-left: 8px;
|
|
}
|
|
|
|
.participants-count {
|
|
cursor: pointer;
|
|
}
|