2022-03-12 11:53:55 -08:00
|
|
|
.header {
|
2022-03-20 20:45:37 -07:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .titleAndBadge {
|
|
|
|
display: flex;
|
|
|
|
text-align: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2022-03-12 11:53:55 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 650px) {
|
2022-03-20 20:45:37 -07:00
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .titleAndBadge {
|
|
|
|
flex-direction: column;
|
|
|
|
padding-bottom: var(--gap-double);
|
|
|
|
}
|
|
|
|
}
|