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

36 lines
584 B
CSS
Raw Normal View History

.header {
2022-03-24 22:32:24 -04:00
display: flex;
justify-content: space-between;
align-items: center;
2022-03-20 23:45:37 -04:00
}
.header .titleAndBadge {
2022-03-24 22:32:24 -04:00
display: flex;
text-align: center;
justify-content: space-between;
align-items: center;
}
2022-03-24 22:32:24 -04:00
.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);
}
2022-03-20 23:45:37 -04:00
2022-03-24 22:32:24 -04:00
.header .titleAndBadge span {
margin-left: 0;
margin-bottom: var(--gap);
display: flex;
justify-content: space-around;
width: 100%;
}
2022-03-20 23:45:37 -04:00
}