Skip to content

Instantly share code, notes, and snippets.

@dangayle
Created April 27, 2011 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save dangayle/945382 to your computer and use it in GitHub Desktop.
Save dangayle/945382 to your computer and use it in GitHub Desktop.
Override SASS variable scope?
$mid:#66CCFF;
$dark:darken($mid, 40%);
a{
color:$mid;
&:hover{color:dark;}
}
@media only screen and (max-width: 767px) {
$mid:#22CCFF;
a{
color:$mid;
&:hover{color:dark;}
}
}
a{color:$mid;}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment