Files
flask-formula10/formula10/static/style/diagram.css
Christoph Urlacher 1ad558171d
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 14s
Decrease diagram height on large screens
2024-03-03 03:38:25 +01:00

18 lines
323 B
CSS

.chart-container {
width: 100%;
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) {
.chart-container {
width: 100%;
height: 100vh;
}
}