CoastalCommitsPastes/client/components/post-page/post-page.module.css
2022-03-24 19:32:24 -07:00

35 lines
584 B
CSS

.header {
display: flex;
justify-content: space-between;
align-items: center;
}
.header .titleAndBadge {
display: flex;
text-align: center;
justify-content: space-between;
align-items: center;
}
.header .titleAndBadge span {
margin-left: var(--gap);
}
@media screen and (max-width: 680px) {
.header {
flex-direction: column;
}
.header .titleAndBadge {
flex-direction: column;
padding-bottom: var(--gap-double);
}
.header .titleAndBadge span {
margin-left: 0;
margin-bottom: var(--gap);
display: flex;
justify-content: space-around;
width: 100%;
}
}