Skip to content

Instantly share code, notes, and snippets.

@danielfttorres
Created September 18, 2014 04:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danielfttorres/b9ecef9f7461f3ccb69c to your computer and use it in GitHub Desktop.
Save danielfttorres/b9ecef9f7461f3ccb69c to your computer and use it in GitHub Desktop.
Bootstrap Media Queries
@media (max-width: $screen-xs-max) {
/* Phone */
}
@media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) {
/* Tablet */
}
@media (min-width: $screen-md-min) and (max-width: $screen-md-max) {
/* Desktop */
}
@media (min-width: $screen-lg-min) {
/* Large Desktop */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment