Add chart styling

This commit is contained in:
2021-09-11 17:43:51 +01:00
parent efc58ff390
commit 3549b6788d
2 changed files with 23 additions and 1 deletions

7
src/css/Chart.css Normal file
View File

@@ -0,0 +1,7 @@
.chart {
margin-bottom: -12px;
}
.chart-title {
margin-bottom: 0;
}

View File

@@ -3,7 +3,6 @@
table-layout: auto; table-layout: auto;
column-gap: 10px; column-gap: 10px;
width: 100%; width: 100%;
margin-top: 24px;
row-gap: 8px; row-gap: 8px;
} }
@@ -19,3 +18,19 @@
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;
} }
.history-sections {
display: flex;
flex-direction: column;
}
.history-sections > div {
flex-grow: 1;
}
.historical-user-stats-container {
display: flex;
flex-direction: row;
column-gap: 48px;
flex-wrap: wrap;
}