Skip to content

Commit

Permalink
feat(animation): Add a linear animation method
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 332298137
  • Loading branch information
patrickrodee authored and copybara-github committed Sep 17, 2020
1 parent 3e435ba commit c250ec5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/mdc-animation/_animation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,7 @@ $sharp-curve-timing-function: cubic-bezier(0.4, 0, 0.6, 1) !default;
@function standard($name, $duration, $delay: 0ms) {
@return $name $duration $delay $standard-curve-timing-function;
}

@function linear($name, $duration, $delay: 0ms) {
@return $name $duration $delay linear;
}

0 comments on commit c250ec5

Please sign in to comment.