diff --git a/less/component-animations.less b/less/component-animations.less index da1f2e5350..1e1e78b851 100644 --- a/less/component-animations.less +++ b/less/component-animations.less @@ -2,10 +2,10 @@ // -------------------- .fade { - .opacity(0); + opacity: 0; .transition(opacity .15s linear); &.in { - .opacity(100); + opacity: 1; } } @@ -17,4 +17,4 @@ &.in { height: auto; } -} \ No newline at end of file +}