2020-10-15 07:09:00 +02:00
|
|
|
.chart {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
color: var(--msgColor);
|
|
|
|
pointer-events: none;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2022-12-09 08:43:43 +01:00
|
|
|
font-size: var(--font-size-xs);
|
2020-10-15 07:09:00 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.metric {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-12-09 08:43:43 +01:00
|
|
|
font-size: var(--font-size-sm);
|
2020-10-15 07:09:00 +02:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dot {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 100%;
|
|
|
|
margin-right: 8px;
|
2022-12-09 08:43:43 +01:00
|
|
|
background: var(--base50);
|
2020-10-15 07:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.color {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|