Skip to content

Instantly share code, notes, and snippets.

@alanhogan
Created August 25, 2015 01:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanhogan/322c1e3d3ddf7d6b9cc1 to your computer and use it in GitHub Desktop.
Save alanhogan/322c1e3d3ddf7d6b9cc1 to your computer and use it in GitHub Desktop.
$four: "4";
$seven: "7";
$pi: 3.14159;
$phi: 1.618;
$null: null;
@if $seven > $four { // may only compare numbers on line 2 at column 9
.fourIsBiggerThanSeven {
color: green;
}
}
@if $pi > $phi {
.piIsBiggerThanPhi {
color: green;
}
}
@if $four > null {
.fourIsBiggerThanNull {
color: green;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment