Skip to content

Instantly share code, notes, and snippets.

@aaroneaton
Last active August 29, 2015 14:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aaroneaton/f26e622ce9d5b46152e9 to your computer and use it in GitHub Desktop.
Save aaroneaton/f26e622ce9d5b46152e9 to your computer and use it in GitHub Desktop.
// Change the column widths to match your site
@media #{$large-up} {
.content-sidebar .content-sidebar-wrap {
main {
@include grid-column(9);
}
aside.sidebar-primary {
@include grid-column(3);
}
}
.sidebar-content .content-sidebar-wrap {
main {
@include grid-column($columns:9, $push:3);
}
aside.sidebar-primary {
@include grid-column($columns:3, $pull:9);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment