Skip to content

Instantly share code, notes, and snippets.

@quattromani
Created October 25, 2014 20:23
Show Gist options
  • Save quattromani/d7e5367dd77eea174052 to your computer and use it in GitHub Desktop.
Save quattromani/d7e5367dd77eea174052 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.6)
// Compass (v1.0.1)
// ----
// Margin
@mixin margin($top: 0, $right: $top or $left, $bottom: $top, $left: $right or $top) {
margin-top: $top;
margin-right: $right;
margin-bottom: $bottom;
margin-left: $left;
}
.element {
@include margin(10);
}
.element {
margin-top: 10;
margin-right: 10;
margin-bottom: 10;
margin-left: 10;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment