Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Last active December 20, 2015 17:58
Show Gist options
  • Save babsgosgens/6172533 to your computer and use it in GitHub Desktop.
Save babsgosgens/6172533 to your computer and use it in GitHub Desktop.
Shorthand mixin for column, combines above mixins. Behavior can be overridden with the parameters.
@mixin column($fraction: 1/1, $persistent: false, $apply-padding: 1/2, $apply-margin: false)
{
@include column-behavior();
@include column-width($fraction, $persistent);
@if $apply-padding {
@include column-spacing($apply-padding);
}
@if $apply-margin {
@include column-spacing($apply-margin, true);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment