Skip to content

Instantly share code, notes, and snippets.

@brendonexus
Forked from mrl22/bootstrap4.scss
Created December 16, 2016 12:53
Show Gist options
  • Save brendonexus/319d5144038fb0185efce156c515af3f to your computer and use it in GitHub Desktop.
Save brendonexus/319d5144038fb0185efce156c515af3f 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