openreplay/frontend/app/components/Dashboard/Widgets/common/countBadge.css
2021-05-01 15:12:01 +05:30

40 lines
No EOL
518 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;
}
.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;
}
}