mirror of
https://github.com/Nezumi-2711/loi-phan-internship.git
synced 2026-09-22 20:01:33 +00:00
28 lines
465 B
SCSS
28 lines
465 B
SCSS
.header {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: $max-width;
|
|
min-width: $min-width;
|
|
padding: 24px;
|
|
margin: auto;
|
|
}
|
|
|
|
@media screen and (min-width: 840px) {
|
|
.header {
|
|
padding-top: 32px;
|
|
padding-inline: 24px;
|
|
gap: 10px;
|
|
}
|
|
|
|
.header-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 10px;
|
|
width: 100%;
|
|
max-width: 918px;
|
|
height: auto;
|
|
}
|
|
}
|