Created
January 30, 2014 01:18
-
-
Save mturjak/8700861 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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.2.14) | |
| // Compass (v0.12.2) | |
| // ---- | |
| @mixin padding($params...) { | |
| $output: (); | |
| @each $var in $params { | |
| $var: $var * $spacer; | |
| $output: join( $output, $var ); | |
| } | |
| padding: $output; | |
| } | |
| $spacer: 10px; | |
| test{ | |
| @include padding(10, 20, 10, 5); | |
| } |
This file contains hidden or 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 { | |
| padding: 100px 200px 100px 50px; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment