Skip to content

Instantly share code, notes, and snippets.

@micahgodbolt
Created February 27, 2015 21:34
Show Gist options
  • Save micahgodbolt/364ec7e763973108c103 to your computer and use it in GitHub Desktop.
Save micahgodbolt/364ec7e763973108c103 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
$widths: (
'small': 400px,
'medium': 800px,
'large': 1024px,
);
@mixin foo($width) {
max-width: map-get($widths, $width);
}
div {
@include foo(small);
}
div {
max-width: 400px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment