CoastalCommitsPastes/client/app/(posts)/post/[id]/styles.module.css
2022-12-04 14:49:18 -08:00

24 lines
338 B
CSS

.root {
padding-bottom: 200px;
display: flex;
flex-direction: column;
gap: var(--gap);
}
@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;
}
}