Created
February 25, 2015 01:44
-
-
Save cjsewell/455aaa258ea32a6f2dae to your computer and use it in GitHub Desktop.
Boostrap sass break points
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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