Skip to content

Instantly share code, notes, and snippets.

@drewbolles
Created January 7, 2015 18:10
Show Gist options
  • Save drewbolles/540e028279abe34bd9a9 to your computer and use it in GitHub Desktop.
Save drewbolles/540e028279abe34bd9a9 to your computer and use it in GitHub Desktop.
Sass functions
/**
* @file
* A collection of sass functions.
*/
/**
* spacing unit
* This function returns either the base spacing unit, or
* the modification passed through. Accepts fractions or decimals
*
* @TODO
* Create error reporting for improper variables
*/
@function spacing-unit($unit: $base-spacing-unit) {
@if $unit == $base-spacing-unit {
@return $unit;
} @else {
@return $unit * $base-spacing-unit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment