Created
October 6, 2014 21:45
-
-
Save malrase/ed4788de313bcabe9f68 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.test { | |
margin: 101px 2px 3px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment