Skip to content

Commit

Permalink
Fix for slider and elastic top position of hamburger-inner.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsuh committed Mar 6, 2016
1 parent ab58a0f commit 13fa295
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion _sass/hamburgers/types/_elastic-r.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
.hamburger--elastic-r {
.hamburger-inner {
top: 0;
top: $hamburger-layer-height / 2;
transition-duration: 0.4s;
transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);

Expand Down
2 changes: 1 addition & 1 deletion _sass/hamburgers/types/_elastic.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
.hamburger--elastic {
.hamburger-inner {
top: 0;
top: $hamburger-layer-height / 2;
transition-duration: 0.4s;
transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);

Expand Down
2 changes: 1 addition & 1 deletion _sass/hamburgers/types/_slider-r.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
.hamburger--slider-r {
.hamburger-inner {
top: 0;
top: $hamburger-layer-height / 2;

&::before {
top: $hamburger-layer-height + $hamburger-layer-spacing;
Expand Down
2 changes: 1 addition & 1 deletion _sass/hamburgers/types/_slider.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
*/
.hamburger--slider {
.hamburger-inner {
top: 0;
top: $hamburger-layer-height / 2;

&::before {
top: $hamburger-layer-height + $hamburger-layer-spacing;
Expand Down

0 comments on commit 13fa295

Please sign in to comment.