Created
August 21, 2014 12:09
-
-
Save FWeinb/1eab32c886ebe63294ee 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
// ---- | |
// Sass (v3.4.0) | |
// Compass (v1.0.0) | |
// ---- | |
$myVar: 10; | |
$myBool: true; | |
@if ($myBool==true) { | |
$myVar: 7 !global; | |
} | |
.p { | |
width:$myVar px; | |
} |
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
.p { | |
width: 7 px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment