This commit is contained in:
zadit
2025-01-06 02:06:30 +07:00
parent 59a9d299c5
commit 918c923143
8 changed files with 219 additions and 50 deletions

View File

@@ -27,10 +27,28 @@
flex-grow: 1;
text-align: center;
padding: 10px;
border-radius: 10px 10px 0 0;
transition: all 0.3s ease-in-out;
font-weight: 600;
}
.dateSelector:first-child {
flex-grow: 1;
text-align: center;
padding: 10px;
border-radius: 10px 0 0 0;
transition: all 0.3s ease-in-out;
font-weight: 600;
}
.dateSelector:last-child {
flex-grow: 1;
text-align: center;
padding: 10px;
border-radius: 0 10px 0 0;
transition: all 0.3s ease-in-out;
font-weight: 600;
}
.dateSelectorActive {
color: black;
z-index: 2;
@@ -43,5 +61,6 @@
.chartWrapper {
border: 1px solid rgb(179, 177, 177);
border-radius: 0 0 11px 11px;
}