CoastalCommitsPastes/client/components/new-post/post.module.css

29 lines
476 B
CSS
Raw Normal View History

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