Skip to content

Instantly share code, notes, and snippets.

@matthewcopeland
Created August 27, 2012 08:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthewcopeland/3486688 to your computer and use it in GitHub Desktop.
Save matthewcopeland/3486688 to your computer and use it in GitHub Desktop.
Using global and local variables in sass for media queries.
$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