Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created March 27, 2014 09:17
Show Gist options
  • Save mturjak/9803569 to your computer and use it in GitHub Desktop.
Save mturjak/9803569 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.17)
// Compass (v0.12.4)
// ----
$default: 1;
@mixin test($p: $default) {
@if ($p == $default) {
/* Do something if $p is default */
} @else {
/* Do something else if $p is not default*/
}
}
test1 {
@include test();
}
test2 {
@include test(2);
}
test1 {
/* Do something if $p is default */
}
test2 {
/* Do something else if $p is not default*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment