Skip to content

Instantly share code, notes, and snippets.

@kenwheeler
Created October 7, 2014 03:24
Show Gist options
  • Save kenwheeler/3895c2cc0904a3ce4e0e to your computer and use it in GitHub Desktop.
Save kenwheeler/3895c2cc0904a3ce4e0e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
@mixin media($queryString){
@media #{$queryString} {
@content;
}
}
.container {
width: 900px;
@include media("(max-width: 767px)"){
width: 100%;
}
}
.container {
width: 900px;
}
@media (max-width: 767px) {
.container {
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment