Created
December 15, 2015 16:41
-
-
Save blackfalcon/7b5dcd2c3852f63e857b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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