Skip to content

Instantly share code, notes, and snippets.

@mturjak
Created February 16, 2014 11:14
Show Gist options
  • Select an option

  • Save mturjak/9032630 to your computer and use it in GitHub Desktop.

Select an option

Save mturjak/9032630 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.2.14)
// Compass (v0.12.2)
// ----
$a: (foo bar, baz ban);
test a {
list-a: $a;
type: type-of($a);
}
$b: nth($a,1);
test b {
list-b: $b;
type: type-of($b);
}
test a {
list-a: foo bar, baz ban;
type: list;
}
test b {
list-b: foo bar;
type: list;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment