diff --git a/scss/_animations.scss b/scss/_animations.scss index 089af2a81a..75ef886f9c 100644 --- a/scss/_animations.scss +++ b/scss/_animations.scss @@ -1,4 +1,3 @@ - /** * Animations * -------------------------------------------------- @@ -73,11 +72,11 @@ $slide-in-up-function: cubic-bezier(.1, .7, .1, 1); // Slide Out To Left // ------------------------------- -@-webkit-keyframes slideOutToleft { +@-webkit-keyframes slideOutToLeft { from { -webkit-transform: translate3d(0, 0, 0); } to { -webkit-transform: translate3d(-100%, 0, 0); } } -@-moz-keyframes slideOutToleft { +@-moz-keyframes slideOutToLeft { from { -moz-transform: translateX(0); } to { -moz-transform: translateX(-100%); } }