2020-10-15 07:09:00 +02:00
|
|
|
.chart {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tooltip {
|
2023-03-14 19:35:24 +01:00
|
|
|
position: fixed;
|
2020-10-15 07:09:00 +02:00
|
|
|
pointer-events: none;
|
2023-04-01 05:03:28 +02:00
|
|
|
z-index: var(--z-index-popup);
|
2020-10-15 07:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2022-12-13 04:45:38 +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-13 04:45:38 +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-13 04:45:38 +01:00
|
|
|
background: var(--base50);
|
2020-10-15 07:09:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.color {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
}
|