Omphaloskepsis-2/assets/css/components/_chart.scss

21 lines
332 B
SCSS
Raw Normal View History

2025-01-04 20:22:41 +01:00
.chart-container {
2025-01-11 16:18:22 +01:00
position: relative;
2025-02-20 01:22:27 +01:00
inline-size: 100%;
min-block-size: 50vh;
2025-01-11 16:18:22 +01:00
display: flex;
justify-content: center;
2025-01-04 20:22:41 +01:00
2025-01-11 16:18:22 +01:00
@media (orientation: landscape) {
block-size: 75vh;
}
2025-01-04 20:22:41 +01:00
2025-01-11 16:18:22 +01:00
@include mq("large") {
block-size: auto;
max-block-size: 80vh;
}
2025-01-04 20:22:41 +01:00
2025-01-11 16:18:22 +01:00
& + .chart-container {
margin-block-start: 1em;
}
2025-01-04 20:22:41 +01:00
}