Skip to content

Commit 642f751

Browse files
author
Tomás Arribas
committed
Do not use filters in fade animations
1 parent b261f97 commit 642f751

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

less/component-animations.less

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// --------------------
33

44
.fade {
5-
.opacity(0);
5+
opacity: 0;
66
.transition(opacity .15s linear);
77
&.in {
8-
.opacity(100);
8+
opacity: 1;
99
}
1010
}
1111

@@ -17,4 +17,4 @@
1717
&.in {
1818
height: auto;
1919
}
20-
}
20+
}

0 commit comments

Comments
 (0)