Skip to content

Instantly share code, notes, and snippets.

@mattdrose
Created June 18, 2015 20:59
Show Gist options
  • Save mattdrose/6817e0e4b35be444d41f to your computer and use it in GitHub Desktop.
Save mattdrose/6817e0e4b35be444d41f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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")};
}
.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