Files
flask-formula10/formula10/static/style/diagram.css
Christoph Urlacher 873df8bd8e
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 15s
Only apply horizontal diagram width on mobile
2024-03-03 03:34:42 +01:00

11 lines
204 B
CSS

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