Skip to content

Instantly share code, notes, and snippets.

@frontgirl
Forked from jlittlejohn/gist:4084254
Last active June 17, 2018 14:30
Show Gist options
  • Select an option

  • Save frontgirl/24a402ddb3b74101c95225f79bf85fa9 to your computer and use it in GitHub Desktop.

Select an option

Save frontgirl/24a402ddb3b74101c95225f79bf85fa9 to your computer and use it in GitHub Desktop.
SCSS: Content Columns (Mixin)
@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