openreplay/frontend/app/components/Dashboard/Widgets/common/countBadge.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

41 lines
No EOL
548 B
CSS

.title {
color: $gray-medium;
font-size: 11px;
margin-bottom: 15px;
}
.icon {
height: 16px;
}
.countWrapper {
height: 24px;
margin-top: -5px;
}
.count {
font-size: 20px;
font-weight: 500;
line-height: initial;
}
.unit {
font-size: 15px;
align-self: flex-end;
margin-left: 5px;
/* margin-bottom: 3px; */
}
.change {
font-size: 12px;
min-height: 20px;
& > div {
display: flex;
align-items: center;
}
&[data-colorgreen=true] {
color: $green;
}
&[data-colorgreen=false] {
color: $red;
}
}