umami/src/components/metrics/BarChart.module.css
2023-10-02 23:51:26 -07:00

20 lines
223 B
CSS

.container {
display: grid;
}
.chart {
position: relative;
height: 400px;
overflow: hidden;
}
.tooltip {
display: flex;
flex-direction: column;
gap: 10px;
}
.tooltip .value {
text-transform: lowercase;
}