Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Last active December 20, 2015 17:58
Show Gist options
  • Save babsgosgens/6172518 to your computer and use it in GitHub Desktop.
Save babsgosgens/6172518 to your computer and use it in GitHub Desktop.
Mixin to reverse padding on a container. Is sometimes helpful when nested columns.
@mixin bleed($fraction: -1/2, $persistent: false)
{
@include column-spacing($fraction, true);
@if $persistent == false {
@if $column-breakpoint {
@include breakpoint( $column-breakpoint ) {
@include column-spacing($fraction/2, true);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment