Created
June 18, 2015 20:59
-
-
Save mattdrose/6817e0e4b35be444d41f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$test: (red: #F00, other: #FFF); | |
.color { | |
content: #{map-get($test, red)}; | |
content: #{map-get($test, other)}; | |
content: #{map-get($test, "red")}; | |
content: #{map-get($test, "other")}; | |
} |
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
.color { | |
content: "#F00"; | |
content: "#FFF"; | |
content: ""; | |
content: "#FFF"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment