Created
July 3, 2014 17:25
-
-
Save adamsir/cd0a547f40302d7521e3 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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
// ---- | |
// libsass (v2.0.0) | |
// ---- | |
$subject: (background:#fff); | |
@mixin list-map($class) { | |
@mixin property($properties...){ | |
$length: length($properties); | |
$value: nth($properties, $length); | |
@for $i from 1 to $length{ | |
#{nth($properties, $i)}: $property; | |
} | |
} | |
@mixin value($values...){ | |
$length: length($values); | |
$value: nth($values, $length); | |
@for $i from 1 to $length{ | |
#{nth($values, $i)}: $value; | |
} | |
} | |
} |
This file contains hidden or 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
source string:1: error: error reading values after background |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment