Skip to content

Instantly share code, notes, and snippets.

@ImBobby
Created September 30, 2013 08:13
Show Gist options
  • Save ImBobby/6760747 to your computer and use it in GitHub Desktop.
Save ImBobby/6760747 to your computer and use it in GitHub Desktop.
$mobile = "screen and (min-width: 30em)";
$desktop = "screen and (min-width: 60em)";
$footer-height;
body{
@media #{$mobile}{
$footer-height: 200px;
}
@media #{$desktop}{
$footer-height: 350px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment