Created
April 28, 2013 06:27
-
-
Save chipcullen/5476098 to your computer and use it in GitHub Desktop.
Prop-Query
This file contains 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
@mixin prop-query($min-size, $property, $value){ | |
@media screen and (min-width: $min-size){ | |
#{$property}: $value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment