19 lines
209 B
CSS
19 lines
209 B
CSS
|
/* Charts */
|
||
|
.chart-flex-container {
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.chart-flex-container article {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
#chart {
|
||
|
width: 100%;
|
||
|
height: 50vh;
|
||
|
}
|
||
|
|
||
|
.chart-area {
|
||
|
width: 60%;
|
||
|
margin: var(--article-margin);
|
||
|
}
|