2022-03-06 19:46:59 -05:00
|
|
|
.buttons {
|
2022-03-26 03:24:18 -04:00
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: var(--gap-double);
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
2022-03-26 03:24:18 -04:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: var(--gap);
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
2022-03-09 04:50:55 -05:00
|
|
|
@media screen and (max-width: 650px) {
|
2022-03-26 03:24:18 -04:00
|
|
|
.title {
|
|
|
|
align-items: flex-start;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-03-12 18:51:31 -05:00
|
|
|
|
2022-03-26 03:24:18 -04:00
|
|
|
.buttons {
|
|
|
|
flex-direction: column;
|
|
|
|
margin: 0;
|
|
|
|
justify-content: space-between;
|
|
|
|
min-height: 95px;
|
|
|
|
}
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|