23 lines
390 B
CSS
23 lines
390 B
CSS
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x1);
|
|
}
|
|
|
|
.claim {
|
|
color: var(--Text-Secondary);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: var(--Space-x2);
|
|
}
|
|
|
|
@media screen and (min-width: 1367px) {
|
|
.header {
|
|
align-items: center;
|
|
flex-direction: row;
|
|
gap: var(--Space-x6);
|
|
}
|
|
}
|