2022-03-12 14:53:55 -05:00
|
|
|
.header {
|
2022-03-20 23:45:37 -04: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 14:53:55 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (max-width: 650px) {
|
2022-03-20 23:45:37 -04:00
|
|
|
.header {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.header .titleAndBadge {
|
|
|
|
flex-direction: column;
|
|
|
|
padding-bottom: var(--gap-double);
|
|
|
|
}
|
|
|
|
}
|