Skip to content

Commit 22468a5

Browse files
committedOct 9, 2016
Fix navigation bar animation "flicker" in Safari
- Close mmistakes#568
1 parent 395e639 commit 22468a5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎_sass/_navigation.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@
236236
width: 100%;
237237
-webkit-transition: $global-transition;
238238
transition: $global-transition;
239-
-webkit-transform: scaleX(0);
240-
-ms-transform: scaleX(0);
241-
transform: scaleX(0); /* hide*/
239+
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
240+
-ms-transform: scaleX(0) translate3d(0, 0 , 0);
241+
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
242242
}
243243

244244
&:hover:before {

0 commit comments

Comments
 (0)
Please sign in to comment.