Skip to content

Instantly share code, notes, and snippets.

@TexRx
Created November 12, 2014 19:35
Show Gist options
  • Save TexRx/d879dffa0997d9de5c08 to your computer and use it in GitHub Desktop.
Save TexRx/d879dffa0997d9de5c08 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div id="sidebar">
</div>
<div class="another-sidebar">
</div>
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// ----
@mixin smartphone() {
@media screen and (max-width: 600px) {
@content;
}
}
#sidebar {
$sidebar-width: 300px;
width: $sidebar-width;
@include smartphone {
width: $sidebar-width / 3;
}
}
.another-sidebar {
width: $sidebar-width;
}
Undefined variable: "$sidebar-width".
<div id="sidebar">
</div>
<div class="another-sidebar">
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment