CoastalCommitsPastes/client/app/(posts)/post/[id]/components/header/title/title.module.css
2022-12-04 01:31:51 -08:00

35 lines
482 B
CSS

.title {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.title .badges {
display: flex;
gap: var(--gap-half);
flex-wrap: wrap;
}
.title h3 {
margin: 0;
padding: 0;
display: inline-block;
}
@media screen and (max-width: 768px) {
.title {
flex-direction: column;
gap: var(--gap-half);
}
.title .badges {
align-items: center;
justify-content: center;
}
.buttons {
display: flex;
justify-content: center;
}
}