Decrease diagram height on large screens
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 14s

This commit is contained in:
2024-03-03 03:38:25 +01:00
parent 873df8bd8e
commit 1ad558171d

View File

@ -1,6 +1,13 @@
.chart-container {
width: 100%;
height: 50vh;
height: 40vh;
}
@media only screen and (max-width: 900px) {
.chart-container {
width: 100%;
height: 50vh;
}
}
@media only screen and (orientation: landscape) and (max-width: 900px) {