-
-
Save chayn1k/c53b697051581556f71e to your computer and use it in GitHub Desktop.
Media query mixins for Stylus
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 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