Skip to content

Instantly share code, notes, and snippets.

@jbutko
Created December 10, 2013 18:51
Show Gist options
  • Save jbutko/7895980 to your computer and use it in GitHub Desktop.
Save jbutko/7895980 to your computer and use it in GitHub Desktop.
SCSS, SASS, CSS: Margin mixin
/*
Mixin for consistent top/bottom margin, default 64px
Usage:
@include margin(top, 2);
Result: margin-top: 32px;
(C) Jozef Butko
*/
@mixin margin-base($position: bottom, $divider: 1) {
margin-#{$position}: (64px/$divider);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment