.button-burger -> .nav-button

This commit is contained in:
Raphael Goetter 2017-09-07 18:48:39 +02:00
parent 0f91666bbc
commit 5e1c4bced1
4 changed files with 9 additions and 9 deletions

View file

@ -117,7 +117,7 @@ button {
background-position: center;
background-repeat: no-repeat;
background-origin: content-box;
background-size: 100% calc(#{$size-burger} * (#{$weight-burger} / 100));
background-size: 100% $weight-burger;
transition: .25s;
transition-property: transform, background;
will-change: transform, background;
@ -125,7 +125,7 @@ button {
&::before,
&::after {
content: "";
height: calc(#{$size-burger} * (#{$weight-burger} / 100));
height: $weight-burger;
background: $color-burger;
transition: .25s;
transition-property: transform, top;