blob: 29279b8c269f397e3ef037a82ef6cd1318c0beaa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.TrafficChart {
color: var(--color-text);
background-color: var(--color-bg-chart);
height: 23vh !important;
@media only screen and (min-width: 600px) {
height: 25vh !important;
}
@media only screen and (min-width: 768px) {
height: 27vh !important;
}
@media only screen and (min-width: 1200px) {
height: 35vh !important;
}
box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
}
|