Created
November 12, 2014 19:35
-
-
Save TexRx/d879dffa0997d9de5c08 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="sidebar"> | |
</div> | |
<div class="another-sidebar"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Undefined variable: "$sidebar-width". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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