mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 13:17:19 +01:00
19 lines
223 B
CSS
19 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;
|
|
}
|