Display multiple charts per row, reduce overall chart size

This commit is contained in:
Chris Wilson
2022-04-13 23:46:15 -04:00
committed by KonoTyran
parent 249972c7fd
commit 66921499ad
3 changed files with 33 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
#charts-wrapper{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.chart-container{
display: flex;
flex-direction: column;
width: calc(50% - 15px);
min-width: 400px;
margin-bottom: 30px;
}