unnecessary gradiant update
authorIan Weller <ian@gaslightmedia.com>
Tue, 6 Oct 2015 17:39:00 +0000 (13:39 -0400)
committerIan Weller <ian@gaslightmedia.com>
Tue, 6 Oct 2015 17:39:00 +0000 (13:39 -0400)
scss/mixins/_gradient.scss

index 51b9bd7..dfd6800 100644 (file)
@@ -6,5 +6,6 @@
 @mixin gradient($from, $to) {
     background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, $from), color-stop(1, $to));
     background: -moz-linear-gradient(center top, $from 5%, $to 100%);
-    filter: progid:DXIm-ageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr'#{$to}');
+    background: -ms-linear-gradient(center top, $from 5%, $to 100%);
+    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}');
 }