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

22 lines
357 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;
}
2022-03-06 19:46:59 -05:00
}