Last active
January 3, 2016 14:19
-
-
Save jakelazaroff/8475684 to your computer and use it in GitHub Desktop.
small SASS grid.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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