Created
February 5, 2013 17:06
-
-
Save scottkellum/4715887 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com, the Sass playground.
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
// Sass v3.2.7 | |
// Breakpoint v1.3 | |
@import "breakpoint"; | |
@function color() { | |
$context: breakpoint-get-context(min-width); | |
@if $context == 550px { | |
@return blue; | |
} | |
@if $context == 850px { | |
@return green; | |
} | |
@else { | |
@return false; | |
} | |
} | |
foo { | |
@include breakpoint(550px) { | |
color: color(); | |
} | |
} |
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 (min-width: 550px) { | |
foo { | |
color: blue; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment