Skip to content

Instantly share code, notes, and snippets.

@starryeyez024
Created February 3, 2015 20:38
Show Gist options
  • Select an option

  • Save starryeyez024/73fa4ecf5a8e475114f4 to your computer and use it in GitHub Desktop.

Select an option

Save starryeyez024/73fa4ecf5a8e475114f4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// 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);
}
(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