2024-09-17 06:50:34 +00:00
|
|
|
.chart-container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 800px;
|
|
|
|
|
margin: auto;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
canvas {
|
2024-09-30 06:37:12 +00:00
|
|
|
width: 100%;
|
|
|
|
|
height: 30vh;
|
2024-09-17 06:50:34 +00:00
|
|
|
margin: 20px;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-select{
|
|
|
|
|
width: max-content;
|
|
|
|
|
margin-top: 20px;
|
|
|
|
|
display: flexbox;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
margin-right: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.container-graph{
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: left;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
canvas{
|
|
|
|
|
display: flex;
|
|
|
|
|
width: max-content;
|
|
|
|
|
flex: 1 1 45%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 576px) {
|
|
|
|
|
canvas{
|
|
|
|
|
flex: 1 1 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|