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

52 lines
775 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
}
2022-03-25 16:01:46 -04:00
.header .title {
2022-03-24 22:32:24 -04:00
display: flex;
text-align: center;
justify-content: space-between;
align-items: center;
}
.header .title h3 {
margin: 0;
padding: 0;
}
2022-03-25 16:01:46 -04:00
.header .title .badges > * {
2022-03-24 22:32:24 -04:00
margin-left: var(--gap);
}
2022-03-25 16:01:46 -04:00
.header .buttons {
display: flex;
justify-content: space-between;
align-items: flex-end;
}
@media screen and (max-width: 900px) {
2022-03-24 22:32:24 -04:00
.header {
flex-direction: column;
}
2022-03-25 16:01:46 -04:00
}
2022-03-24 22:32:24 -04:00
2022-03-25 16:01:46 -04:00
@media screen and (max-width: 700px) {
.header .title {
2022-03-24 22:32:24 -04:00
flex-direction: column;
padding-bottom: var(--gap-double);
}
2022-03-20 23:45:37 -04:00
2022-03-25 16:01:46 -04:00
.header .title .badges > * {
2022-03-24 22:32:24 -04:00
margin-left: 0;
2022-03-25 16:01:46 -04:00
}
.header .title .badges {
2022-03-24 22:32:24 -04:00
display: flex;
2022-03-25 16:01:46 -04:00
flex-direction: row;
justify-content: space-between;
width: 100%;
2022-03-24 22:32:24 -04:00
}
2022-03-20 23:45:37 -04:00
}