Skip to content

Instantly share code, notes, and snippets.

@yellowberri-snippets
Created February 24, 2014 16:14
Show Gist options
  • Select an option

  • Save yellowberri-snippets/9191320 to your computer and use it in GitHub Desktop.

Select an option

Save yellowberri-snippets/9191320 to your computer and use it in GitHub Desktop.
SASS: Quick Columns Mixin
@mixin left-col($width: '68%') {
float:left;
width:#{$width};
@include clearfix;
@include breakpoint(narrowColumn) {
float:none;
width:100%;
}
}
@mixin right-col($width: '30%') {
float:right;
width:#{$width};
@include clearfix;
@include breakpoint(narrowColumn) {
float:none;
width:100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment