Created
February 3, 2015 20:38
-
-
Save starryeyez024/73fa4ecf5a8e475114f4 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
| // ---- | |
| // Sass (v3.4.11) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $map: ( | |
| width: 100px, | |
| height: 200px, | |
| color: red, | |
| background: blue | |
| ); | |
| @function g($key) { | |
| @return array-get($map, $key); | |
| } | |
| .myselector { | |
| width: g(width); | |
| height: g(height); | |
| color: g(color); | |
| background: g(background); | |
| } |
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
| (width: 100px, height: 200px, color: red, background: blue) isn't a valid CSS value. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment