Skip to content

Commit

Permalink
Reduce animation times
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyAubergine committed Jun 15, 2020
1 parent cd67100 commit 2355413
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/getDuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ export default function getTiming(animationType, transitionType) {
switch (animationType) {
case FADE_VERTICAL:
if (transitionType === 'PUSH') {
return 230;
return 250;
}
return 350;
return 250;
default:
return 500;
return 250;
}
}

0 comments on commit 2355413

Please sign in to comment.