-
-
Save frontgirl/24a402ddb3b74101c95225f79bf85fa9 to your computer and use it in GitHub Desktop.
SCSS: Content Columns (Mixin)
This file contains hidden or 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 content-columns($columnCount, $columnGap: $gridGutterWidth) { | |
| -webkit-column-count: $columnCount; | |
| -moz-column-count: $columnCount; | |
| column-count: $columnCount; | |
| -webkit-column-gap: $columnGap; | |
| -moz-column-gap: $columnGap; | |
| column-gap: $columnGap; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment