Custom date range selection.

This commit is contained in:
Mike Cao
2020-09-13 01:26:54 -07:00
parent 7a8ab94bba
commit 4e103152b2
19 changed files with 545 additions and 40 deletions

View File

@@ -0,0 +1,25 @@
.container {
display: flex;
flex-direction: column;
width: 800px;
max-width: 100vw;
}
.calendars {
display: flex;
}
.calendars > div:first-child {
padding-right: 20px;
border-right: 1px solid var(--gray300);
}
.calendars > div:last-child {
padding-left: 20px;
}
@media only screen and (max-width: 768px) {
.calendars {
flex-direction: column;
}
}