25 lines
304 B
CSS
25 lines
304 B
CSS
/* Charts */
|
|
.chart-flex-container {
|
|
display: flex;
|
|
}
|
|
|
|
.chart-flex-container article {
|
|
flex: 1;
|
|
}
|
|
|
|
#chart {
|
|
width: 100%;
|
|
aspect-ratio: 16 / 9;
|
|
}
|
|
|
|
.chart-container {
|
|
margin-top: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#chart-modifiers {
|
|
display: flex;
|
|
}
|