Skip to content

Commit

Permalink
fix(scss): missing scss variables for scss compilation (#858) (closes #…
Browse files Browse the repository at this point in the history
  • Loading branch information
emoralesb05 authored Sep 5, 2017
1 parent f106ccf commit 0a22bba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/platform/core/common/styles/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ $z-index-progress-circular: 2 !default; // Used to fix animation bug in Chrome
// Easing Curves

// The default animation curves used by material design.
$md-linear-out-slow-in-timing-function: cubic-bezier(0.0, 0.0, 0.2, 0.1) !default;
$md-fast-out-slow-in-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1) !default;
$md-fast-out-linear-in-timing-function: cubic-bezier(0.4, 0.0, 1, 1) !default;
$mat-linear-out-slow-in-timing-function: cubic-bezier(0.0, 0.0, 0.2, 0.1) !default;
$mat-fast-out-slow-in-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !default;
$mat-fast-out-linear-in-timing-function: cubic-bezier(0.4, 0.0, 1, 1) !default;

$ease-in-out-curve-function: cubic-bezier(0.35, 0, 0.25, 1) !default;

Expand Down

0 comments on commit 0a22bba

Please sign in to comment.