File size: 640 Bytes
76a7a50 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | .metricValue {
&__title {
color: @theme-color-text;
font-size: 18px;
line-height: 24px;
// Signals the title carries a documentation tooltip.
&--documented {
cursor: help;
}
}
&__primary {
display: flex;
align-items: baseline;
gap: 8px;
}
&__number {
font-size: 28px;
font-weight: 600;
line-height: 36px;
color: @theme-color-text;
}
&__secondaryValue {
color: @theme-color-text;
font-size: 14px;
line-height: 24px;
}
&__secondaryLabel {
margin-left: 4px;
font-size: 12px;
line-height: 24px;
color: @theme-color-text-lighter;
}
}
|