2024-08-07 15:51:19 +01:00
|
|
|
/* Charts */
|
2024-08-08 14:26:55 +01:00
|
|
|
.chart-container {
|
|
|
|
display: flex;
|
2024-11-07 21:37:53 +00:00
|
|
|
/* height: 600px; */
|
2025-01-10 12:20:38 +00:00
|
|
|
aspect-ratio: 2 / 1;
|
2024-08-14 19:48:58 +01:00
|
|
|
}
|
|
|
|
|
2024-09-23 17:46:59 +01:00
|
|
|
.chart {
|
2024-08-14 19:48:58 +01:00
|
|
|
display: flex;
|
2024-09-23 17:46:59 +01:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2024-08-07 15:51:19 +01:00
|
|
|
}
|
2025-01-10 12:20:38 +00:00
|
|
|
|
|
|
|
@media (max-width: 600px) {
|
|
|
|
.chart-container {
|
|
|
|
display: flex;
|
|
|
|
/* height: 600px; */
|
|
|
|
aspect-ratio: 1 / 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|