Invert gradient

This commit is contained in:
Dumitru Ursu 2015-01-09 17:13:35 +02:00
parent 80b4cb90ef
commit 36b66624e2

View file

@ -28,7 +28,7 @@ $default-border-radius: 3px;
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=$from, endColorstr=$to);
-ms-filter: "progid:DXImageTransform.Microsoft.gradient (GradientType=0, startColorstr=#{$from}, endColorstr=#{$to})";
background: linear-gradient(to top, $from $start, $to $end);
background: linear-gradient(to bottom, $from $start, $to $end);
}
@mixin horizontal-linear-gradient($from, $to, $start:0%, $end:100%){