mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
22 lines
275 B
CSS
22 lines
275 B
CSS
.chart {
|
|
position: relative;
|
|
height: 400px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.tooltip {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.tooltip .value {
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
@media only screen and (max-width: 992px) {
|
|
.chart {
|
|
/*height: 200px;*/
|
|
}
|
|
}
|