Commit 642f7514 authored by Tomás Arribas's avatar Tomás Arribas
Browse files

Do not use filters in fade animations

parent b261f978
Showing with 3 additions and 3 deletions
+3 -3
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
// -------------------- // --------------------
.fade { .fade {
.opacity(0); opacity: 0;
.transition(opacity .15s linear); .transition(opacity .15s linear);
&.in { &.in {
.opacity(100); opacity: 1;
} }
} }
...@@ -17,4 +17,4 @@ ...@@ -17,4 +17,4 @@
&.in { &.in {
height: auto; height: auto;
} }
} }
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment