unprefixing opacity

This commit is contained in:
Pablo Cuadrado 2015-01-11 12:05:46 -03:00 committed by Steffen van Bergerem
parent 52fef10bea
commit c402c65f56

View file

@ -76,11 +76,11 @@
background: orange; background: orange;
&:hover { &:hover {
#gs-skip-x { #gs-skip-x {
@include opacity(0.4); opacity: .4;
@include transition(opacity, 0.25s); @include transition(opacity, 0.25s);
&:hover { &:hover {
@include opacity(1); opacity: 1;
} }
} }
} }