Created
August 27, 2012 08:31
-
-
Save matthewcopeland/3486688 to your computer and use it in GitHub Desktop.
Using global and local variables in sass for media queries.
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
$page-padding: 20px; | |
$mobile-page-padding: 10px; | |
#content { padding: $page-padding; } | |
@media only screen and (max-width: 599px) { | |
$page-padding: $mobile-page-padding; | |
#content { padding: $page-padding; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment