Skip to content

Instantly share code, notes, and snippets.

@mrl22
Last active December 16, 2016 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mrl22/f128c4d58cc3377ace379a41f81b87e7 to your computer and use it in GitHub Desktop.
Save mrl22/f128c4d58cc3377ace379a41f81b87e7 to your computer and use it in GitHub Desktop.
Bootstrap v4 SCSS Media Queries
$xl-down: "max-width: 9999px";
$lg-down: "max-width: 1199px";
$md-down: "max-width: 991px";
$sm-down: "max-width: 767px";
$xs-down: "max-width: 575px";
$xl-up: "min-width: 1200px";
$lg-up: "min-width: 992px";
$md-up: "min-width: 768px";
$sm-up: "min-width: 576px";
$xs-up: "min-width: 0";
@media ($sm-down) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment