Created
September 22, 2015 12:52
-
-
Save afonsoalban/57a2280d8afda9a501dd to your computer and use it in GitHub Desktop.
SCSS snippets
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
@mixin columns($numberOfColumns, $margin){ | |
$size: ($margin * ($numberOfColumns - 1) ) / $numberOfColumns; | |
float: left; | |
margin-left: $margin; | |
width: calc(#{100 / $numberOfColumns}% - #{$size}); | |
&:nth-child(#{$numberOfColumns}n+1){ | |
clear: left; | |
margin-left: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment