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