Last active
December 10, 2015 00:28
-
-
Save plapier/4350961 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin my-linear-gradient($color1, $color2) { | |
filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#{$color1}', endColorstr='#{$color1}'); | |
@include linear-gradient($color1, $color2); // Bourbon.io linear-gradient | |
} | |
// Usage | |
@include my-linear-gradient(red, orange); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This mixin is untested.