Skip to content

Commit

Permalink
feat(progress-bar): change animation timing function (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
evilfant authored and pimenovoleg committed Jul 18, 2018
1 parent a726b4d commit c9fcdcf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/progress-bar/progress-bar.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@import '../core/styles/functions/_timing.scss';

@keyframes mc-progress-bar-indeterminate {
0% {
transform: scaleX(0.25) translateX(-150%);
Expand Down Expand Up @@ -26,7 +28,7 @@
}

&--indeterminate {
animation: mc-progress-bar-indeterminate 2.1s cubic-bezier(0.65, 0.815, 0.735, 0.395) infinite;
animation: mc-progress-bar-indeterminate 2.1s $ease-in-out-quad infinite;
}
}
}

0 comments on commit c9fcdcf

Please sign in to comment.