Skip to content

Instantly share code, notes, and snippets.

@malrase
Created October 6, 2014 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save malrase/ed4788de313bcabe9f68 to your computer and use it in GitHub Desktop.
Save malrase/ed4788de313bcabe9f68 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
@function measure-margin($scale, $measure, $value) {
@return ($measure/$scale)#{$value};
}
.test {
margin: measure-margin(10px, 100px, 1px 2px 3px);
}
.test {
margin: 101px 2px 3px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment