mirror of
https://github.com/Nezumi-2711/loi-phan-internship.git
synced 2026-09-23 04:10:00 +00:00
28 lines
437 B
SCSS
28 lines
437 B
SCSS
.header {
|
|
@include flex-container(space-between, null, center);
|
|
|
|
position: relative;
|
|
max-width: $max-width;
|
|
min-width: $min-width;
|
|
padding: 24px;
|
|
}
|
|
|
|
.header-content {
|
|
@include flex-container(space-between);
|
|
}
|
|
|
|
@media screen and (min-width: 840px) {
|
|
.header {
|
|
padding-top: 32px;
|
|
padding-inline: 24px;
|
|
gap: 10px;
|
|
}
|
|
|
|
.header-content {
|
|
@include size(100%, auto);
|
|
|
|
gap: 10px;
|
|
max-width: 918px;
|
|
}
|
|
}
|