Skip to content

Commit

Permalink
Merge pull request #452 from BinaryStudioAcademy/fix/wr-450-header-la…
Browse files Browse the repository at this point in the history
…yout

wr-450: Fix header layout after adding bottom padding
  • Loading branch information
andanf-e authored Sep 29, 2023
2 parents bf91ff9 + 1195410 commit b197058
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion frontend/src/libs/components/header/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
border-bottom: 2px solid var(--light-gray-15);
}

.layout {
.header > .layout {
display: flex;
justify-content: space-between;
align-items: center;
Expand Down Expand Up @@ -113,6 +113,12 @@ img.avatar:hover {
}
}

@media only screen and (max-width: breakpoints.$medium) {
.header > .layout {
padding: 15px 30px;
}
}

@media only screen and (max-width: breakpoints.$small) {
.logo {
width: 150px;
Expand Down

0 comments on commit b197058

Please sign in to comment.