2022-03-06 16:46:59 -08:00
|
|
|
.buttons {
|
2022-03-26 00:24:18 -07:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: var(--gap-double);
|
2022-03-30 23:03:21 -07:00
|
|
|
gap: var(--gap);
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons .rightButtons {
|
|
|
|
display: flex;
|
|
|
|
gap: var(--gap);
|
|
|
|
align-items: center;
|
2022-03-06 16:46:59 -08:00
|
|
|
}
|
|
|
|
|
2022-03-30 20:01:24 -07:00
|
|
|
.datePicker {
|
|
|
|
flex: 1;
|
|
|
|
}
|
|
|
|
|
2022-03-06 16:46:59 -08:00
|
|
|
.title {
|
2022-03-26 00:24:18 -07:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: var(--gap);
|
2022-03-06 16:46:59 -08:00
|
|
|
}
|
|
|
|
|
2022-04-14 23:25:31 +02:00
|
|
|
.description {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: var(--gap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-09 01:50:55 -08:00
|
|
|
@media screen and (max-width: 650px) {
|
2022-03-26 00:24:18 -07:00
|
|
|
.title {
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-03-12 15:51:31 -08:00
|
|
|
|
2022-03-26 00:24:18 -07:00
|
|
|
.buttons {
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-height: 95px;
|
|
|
|
}
|
2022-03-30 23:03:21 -07:00
|
|
|
|
|
|
|
.buttons .rightButtons {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.buttons .rightButtons > * {
|
|
|
|
width: min(100%, 350px);
|
|
|
|
}
|
2022-03-06 16:46:59 -08:00
|
|
|
}
|