Skip to content

Instantly share code, notes, and snippets.

@JamiesonRoberts
Created June 23, 2015 21:06
Show Gist options
  • Save JamiesonRoberts/a962b38e70cfce2259f2 to your computer and use it in GitHub Desktop.
Save JamiesonRoberts/a962b38e70cfce2259f2 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$value1: null;
$color1: red;
@function fallback($value, $default) {
@if $value != null {
@return $value;
}
@else {
@return $default;
}
}
div {
color: fallback($value1, $color1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment