Skip to content

Commit

Permalink
Fix issue where color variables weren't specific enough
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoko committed Apr 24, 2020
1 parent 8f93d96 commit 341f554
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions scss/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,13 @@ div.#{$hamburger-class-name} {

> .inner,
span.bar {
&::before,
&::after {
background-color: $hamburger-color-hover;
&:nth-child(1),
&:nth-child(2),
&:nth-child(3) {
&::before,
&::after {
background-color: $hamburger-color-hover;
}
}
}
}
Expand All @@ -64,9 +68,13 @@ div.#{$hamburger-class-name} {

> .inner,
span.bar {
&::before,
&::after {
background-color: $hamburger-color-active;
&:nth-child(1),
&:nth-child(2),
&:nth-child(3) {
&::before,
&::after {
background-color: $hamburger-color-active;
}
}
}
}
Expand Down

0 comments on commit 341f554

Please sign in to comment.