Skip to content

Instantly share code, notes, and snippets.

@jeff-mccarthy
Last active May 7, 2018 20:57
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 jeff-mccarthy/d552b6977a5dfda429f779ffb4eb8d0d to your computer and use it in GitHub Desktop.
Save jeff-mccarthy/d552b6977a5dfda429f779ffb4eb8d0d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass Spacer Generator
//
// Output a list of spacers with a consistent multiplier
// to standardize spacing of margins, padding, etc.
// ----
$spacer-size: 8px;
@function spacer($multiplier) {
@return $multiplier * $spacer-size;
}
.element {
padding: spacer(6);
}
.element {
padding: 48px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment