Skip to content

Commit

Permalink
Fix navigation bar animation "flicker" in Safari
Browse files Browse the repository at this point in the history
  • Loading branch information
mmistakes committed Oct 9, 2016
1 parent 395e639 commit 22468a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _sass/_navigation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,9 @@
width: 100%;
-webkit-transition: $global-transition;
transition: $global-transition;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0); /* hide*/
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
-ms-transform: scaleX(0) translate3d(0, 0 , 0);
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
}

&:hover:before {
Expand Down

0 comments on commit 22468a5

Please sign in to comment.