umami/components/pages/reports/funnel/FunnelChart.module.css

24 lines
318 B
CSS
Raw Normal View History

2023-05-18 20:17:35 +02:00
.chart {
position: relative;
height: 400px;
overflow: hidden;
}
.tooltip {
display: flex;
flex-direction: column;
gap: 10px;
}
.tooltip .value {
display: flex;
flex-direction: column;
text-transform: lowercase;
}
@media only screen and (max-width: 992px) {
.chart {
/*height: 200px;*/
}
}