Files
loi-phan-internship/practice/practice-02/src/styles/layouts/_header.scss
T
nezumi f47dc577a5 Fix code according to the comment
Update code, change file name.
2023-07-18 09:10:31 +07:00

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;
}
}