openreplay/frontend/app/components/ui/Label/label.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

22 lines
No EOL
362 B
CSS

.label {
font-weight: 500 !important;
& > div {
display: flex;
align-items: center;
}
&[data-rounded] {
border-radius: 16px;
}
&[data-red = true] {
color: $red !important;
background-color: rgba(204, 0, 0, 0.1);
}
&[data-green = true] {
color: #12722A !important;
background-color: rgba(60, 180, 0, 0.1);
}
}