Created
March 27, 2014 08:51
-
-
Save mturjak/9803199 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or 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.2.17) | |
// Compass (v0.12.4) | |
// ---- | |
$var: 1; | |
@mixin test($p: null) { | |
@if ($p) { | |
/* Do something if $p was 4passed?*/ | |
} @else { | |
/* Do something if $p was not passed?*/ | |
} | |
} | |
test1 { | |
@include test(); | |
} | |
test2 { | |
@include test($var); | |
} |
This file contains hidden or 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
test1 { | |
/* Do something if $p was not passed?*/ | |
} | |
test2 { | |
/* Do something if $p was 4passed?*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment