Skip to content

Commit

Permalink
💄 [#1678] Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jiromaykin committed Aug 21, 2023
1 parent dd222a5 commit a156638
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions src/open_inwoner/scss/components/Header/Header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ $vm: var(--spacing-large);
}

// Tablet search bar
@media screen and (min-width: 768px) and (max-width: 910px) {
@media (min-width: 768px) and (max-width: 910px) {
> .header__actions {
grid-column: 1 / span 12;
grid-row: 2;
Expand Down Expand Up @@ -127,7 +127,7 @@ $vm: var(--spacing-large);
grid-row: 1;
}

@media screen and (min-width: 768px) and (max-width: 910px) {
@media (min-width: 768px) and (max-width: 910px) {
grid-column: 10 / span 3;
}
}
Expand All @@ -141,7 +141,7 @@ $vm: var(--spacing-large);
box-sizing: border-box;
width: fit-content;

@media screen and (max-width: 360px) {
@media (max-width: 360px) {
margin-left: var(--spacing-tiny);
padding: 8px;
margin-right: auto;
Expand All @@ -151,10 +151,9 @@ $vm: var(--spacing-large);
grid-column: 1 / span 6;
margin: 0;
}
@media screen and (min-width: 361px) and (max-width: 767px) {
padding: 8px;
margin-right: auto;
@media (min-width: 361px) and (max-width: 767px) {
margin-left: var(--spacing-large);
margin-right: auto;
}

img {
Expand Down Expand Up @@ -282,7 +281,7 @@ $vm: var(--spacing-large);
grid-column: 11 / span 2;

// Tablet menu
@media screen and (min-width: 768px) and (max-width: 910px) {
@media (min-width: 768px) and (max-width: 910px) {
grid-column: 10 / span 3;
}

Expand Down

0 comments on commit a156638

Please sign in to comment.