Skip to content

Commit

Permalink
Do not use filters in fade animations
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomás Arribas committed May 21, 2012
1 parent b261f97 commit 642f751
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions less/component-animations.less
Expand Up @@ -2,10 +2,10 @@
// --------------------

.fade {
.opacity(0);
opacity: 0;
.transition(opacity .15s linear);
&.in {
.opacity(100);
opacity: 1;
}
}

Expand All @@ -17,4 +17,4 @@
&.in {
height: auto;
}
}
}

0 comments on commit 642f751

Please sign in to comment.