Skip to content

Instantly share code, notes, and snippets.

@blackfalcon
Created December 15, 2015 16:41
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 blackfalcon/7b5dcd2c3852f63e857b to your computer and use it in GitHub Desktop.
Save blackfalcon/7b5dcd2c3852f63e857b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@import "include-media";
$breakpoints: map-merge($breakpoints, (
'dtmobile': 999px,
'small': 492px,
'medium': 700px,
'desktop': 1024px,
'desktop-large': 1280px
));
$breakpoint: dtmobile;
//$breakpoint: small;
//$breakpoint: medium;
//$breakpoint: desktop;
//$breakpoint: desktop-large;
@include media("screen", ">#{$breakpoint}") {
foo: bar;
}
@media screen and (min-width: 1000px) {
foo: bar;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment