mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
24 lines
318 B
CSS
24 lines
318 B
CSS
|
.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;*/
|
||
|
}
|
||
|
}
|