Skip to content

Instantly share code, notes, and snippets.

@cjsewell
Created February 25, 2015 01:44
Show Gist options
  • Save cjsewell/455aaa258ea32a6f2dae to your computer and use it in GitHub Desktop.
Save cjsewell/455aaa258ea32a6f2dae to your computer and use it in GitHub Desktop.
Boostrap sass break points
div{
@media (min-width: $screen-xs) { // Mobile portrait < 480px
border: 1px solid yellow;
}
@media (min-width: $screen-sm-min) { // Mobile landscape / Tablet portrait < 768px
border: 1px solid green;
}
@media (min-width: $screen-md-min) { // Tablet landscape < 992px
border: 1px solid blue;
}
@media (min-width: $screen-lg-min) { // Descktops etc > 1200px
border: 1px solid red;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment