Created
June 9, 2015 17:28
-
-
Save jackjennings/5b945c6731fa26953f32 to your computer and use it in GitHub Desktop.
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 inline-grid($object, $width, $gutter: 30px) { | |
font-size: 0; | |
.#{$object}s { | |
margin-right: -$gutter; | |
} | |
.#{$object} { | |
@include text; | |
display: inline-block; | |
width: $width; | |
padding-right: $gutter; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment