Skip to content

Commit

Permalink
fix(header): the dropdown for lang change css classes were in the wro…
Browse files Browse the repository at this point in the history
…ng order and create a conflict
  • Loading branch information
Ferit Topcu committed Jun 25, 2018
1 parent 5f6dfbe commit c5eb48b
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions molecules/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,24 @@ $header-border-color: schema-color(4) !default;
.icon {
vertical-align: middle;
}

li:not(.dropdown-item) {
display: inline-block;
text-transform: uppercase;
transition: all 0.2s linear;

&:hover,
&.is-hovered {
background-color: $header-accent-background-color;
}

a,
.dropdown-trigger {
display: block;
cursor: pointer;
padding: 0 $space-m;
}
}
}
}

Expand All @@ -144,24 +162,6 @@ $header-border-color: schema-color(4) !default;
}
}

li:not(.dropdown-item) {
display: inline-block;
text-transform: uppercase;
transition: all 0.2s linear;

&:hover,
&.is-hovered {
background-color: $header-accent-background-color;
}

a,
.dropdown-trigger {
display: block;
cursor: pointer;
padding: 0 $space-m;
}
}

a {
color: inherit;

Expand Down

0 comments on commit c5eb48b

Please sign in to comment.