Skip to content

Instantly share code, notes, and snippets.

@aokolish
Created July 6, 2012 17:05
Show Gist options
  • Save aokolish/3061369 to your computer and use it in GitHub Desktop.
Save aokolish/3061369 to your computer and use it in GitHub Desktop.
string interpolation in media queries
$large_display: '(min-width: 1200px)';
body {
@media #{$large_display} {
background: blue;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment