2020-09-13 10:26:54 +02:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
max-width: 100vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.calendars {
|
|
|
|
display: flex;
|
2020-09-17 01:28:54 +02:00
|
|
|
justify-content: center;
|
2020-09-13 10:26:54 +02:00
|
|
|
}
|
|
|
|
|
2020-09-17 01:28:54 +02:00
|
|
|
.calendars > div {
|
|
|
|
width: 380px;
|
2020-09-13 10:26:54 +02:00
|
|
|
}
|
|
|
|
|
2020-09-17 01:28:54 +02:00
|
|
|
.calendars > div + div {
|
|
|
|
margin-left: 20px;
|
2020-09-13 10:26:54 +02:00
|
|
|
padding-left: 20px;
|
2022-12-13 04:45:38 +01:00
|
|
|
border-left: 1px solid var(--base300);
|
2020-09-17 01:28:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.filter {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20px;
|
2020-09-13 10:26:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
.calendars {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2020-09-17 01:28:54 +02:00
|
|
|
|
|
|
|
.calendars > div + div {
|
|
|
|
padding: 0;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-top: 20px;
|
|
|
|
border: 0;
|
|
|
|
}
|
2020-09-13 10:26:54 +02:00
|
|
|
}
|