Skip to content

Instantly share code, notes, and snippets.

@cherifGsoul
Forked from barryvdh/gist:2867387
Created August 31, 2013 19:54
Show Gist options
  • Save cherifGsoul/6400240 to your computer and use it in GitHub Desktop.
Save cherifGsoul/6400240 to your computer and use it in GitHub Desktop.
@import "bootstrap/responsive.less"; //Disable importing variables and mixins, causes to break..
// LANDSCAPE PHONE TO SMALL DESKTOP & PORTRAIT TABLET
// --------------------------------------------------
@media (max-width: 767px) {
.customGrid(auto, 0);
}
// PORTRAIT TABLET TO DEFAULT DESKTOP
// ----------------------------------
@media (min-width: 768px) and (max-width: 979px) {
.customGrid(@gridColumnWidth768, @gridGutterWidth768);
}
// LARGE DESKTOP & UP
// ------------------
@media (min-width: 1200px) {
.customGrid(@gridColumnWidth1200, @gridGutterWidth1200);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment