Skip to content

Instantly share code, notes, and snippets.

@helloncanella
Last active December 21, 2018 21:01
Show Gist options
  • Select an option

  • Save helloncanella/8d253364a1c7e8c09afa364946b2dd6a to your computer and use it in GitHub Desktop.

Select an option

Save helloncanella/8d253364a1c7e8c09afa364946b2dd6a to your computer and use it in GitHub Desktop.
@mixin grid($columns, $gutter){
display: flex;
flex-wrap: wrap;
$r: $columns;
$s: $gutter;
$f: calc(#{100%/$r} - #{(($r - 1)*$s)/$r});
&>*{
width: $f;
margin-bottom: $s;
&:not(:nth-child(#{$r}n)){
margin-right: $s;
}
}
//cancelling the margin-bottom of the last row
& + * {
margin-top: - $s;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment