Skip to content

Instantly share code, notes, and snippets.

@mrl22
Forked from brendonexus/style.scss
Last active February 21, 2019 12: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 mrl22/2c1cac12f01e269f757e9c352ad6d56d to your computer and use it in GitHub Desktop.
Save mrl22/2c1cac12f01e269f757e9c352ad6d56d to your computer and use it in GitHub Desktop.
Bootstrap 3 SCSS Media Queries
$lg: "min-width: 1200px";
$md: "max-width: 1199px";
$sm: "max-width: 991px";
$xs: "max-width: 767px";
$lg-up: "min-width: 1199px";
$md-up: "min-width: 991px";
$sm-up: "min-width: 767px";
$xs-up: "min-width: 0px";
@media ($sm-up) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment