Skip to content

Instantly share code, notes, and snippets.

@micahgodbolt
Created May 29, 2014 21:01
Show Gist options
  • Save micahgodbolt/03d6078572a945e9bed4 to your computer and use it in GitHub Desktop.
Save micahgodbolt/03d6078572a945e9bed4 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
@mixin thing($ratio) {
foo: $ratio;
bar: nth($ratio, 1);
baz: nth($ratio, 3);
}
.cool {
@include thing(1 of 3);
}
.cool {
foo: 1 of 3;
bar: 1;
baz: 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment