Skip to content

Instantly share code, notes, and snippets.

@jakelazaroff
Last active January 3, 2016 14:19
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 jakelazaroff/8475684 to your computer and use it in GitHub Desktop.
Save jakelazaroff/8475684 to your computer and use it in GitHub Desktop.
small SASS grid.
$column-width: 60px;
$gutter-width: 20px;
$line-height: 20px;
@function columns ($columns: 1) {
@return $columns * ($column-width + $gutter-width) - $gutter-width;
}
@function rows ($lines: 1) {
@return $line-height * $lines;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment