Created
August 4, 2015 13:13
-
-
Save eyy/53292ee421a911231399 to your computer and use it in GitHub Desktop.
Media query mixins for Stylus
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
// Media query mixins | |
mobile() | |
@media (max-width: 640px) | |
{block} | |
tablet() | |
@media (max-width: 800px) | |
{block} | |
desktop() | |
@media (max-width: 1200px) | |
{block} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!