2022-03-12 11:53:55 -08:00
|
|
|
.header {
|
2022-03-24 19:32:24 -07:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-03-20 20:45:37 -07:00
|
|
|
}
|
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
.header .title {
|
2022-03-24 19:32:24 -07:00
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-03-12 11:53:55 -08:00
|
|
|
}
|
|
|
|
|
2022-03-25 14:31:10 -07:00
|
|
|
.header .title h3 {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
.header .title .badges > * {
|
2022-03-24 19:32:24 -07:00
|
|
|
margin-left: var(--gap);
|
|
|
|
}
|
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
.header .buttons {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 900px) {
|
2022-03-24 19:32:24 -07:00
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-03-25 13:01:46 -07:00
|
|
|
}
|
2022-03-24 19:32:24 -07:00
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
@media screen and (max-width: 700px) {
|
|
|
|
.header .title {
|
2022-03-24 19:32:24 -07:00
|
|
|
flex-direction: column;
|
|
|
|
padding-bottom: var(--gap-double);
|
|
|
|
}
|
2022-03-20 20:45:37 -07:00
|
|
|
|
2022-03-25 13:01:46 -07:00
|
|
|
.header .title .badges > * {
|
2022-03-24 19:32:24 -07:00
|
|
|
margin-left: 0;
|
2022-03-25 13:01:46 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.header .title .badges {
|
2022-03-24 19:32:24 -07:00
|
|
|
display: flex;
|
2022-03-25 13:01:46 -07:00
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
2022-03-25 14:31:10 -07:00
|
|
|
width: 100%;
|
2022-03-24 19:32:24 -07:00
|
|
|
}
|
2022-03-20 20:45:37 -07:00
|
|
|
}
|