2022-12-04 17:49:18 -05:00
|
|
|
.root {
|
|
|
|
padding-bottom: 200px;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--gap);
|
|
|
|
}
|
|
|
|
|
2022-12-04 04:31:51 -05:00
|
|
|
@media screen and (max-width: 900px) {
|
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
|
|
|
gap: var(--gap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.controls {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.controls {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
}
|