Skip to content

Instantly share code, notes, and snippets.

@Cleecanth
Created September 10, 2015 15:58
Show Gist options
  • Save Cleecanth/4ebb2b6082d48cd53559 to your computer and use it in GitHub Desktop.
Save Cleecanth/4ebb2b6082d48cd53559 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.14)
// Compass (v1.0.3)
// Toolkit (v2.9.0)
// ----
@import "toolkit";
//Sass does some strange stuff with unquoted "and"s.
$foo: testing and #fff;
$bar: testing 'and' #fff;
.foo {
content: #{$foo};
type: '#{type-of($foo)}';
length: '#{length($foo)}';
}
.bar {
content: #{$bar};
type: '#{type-of($bar)}';
length: '#{length($bar)}';
}
.foo {
content: #fff;
type: "color";
length: "1"; }
.bar {
content: testing and #fff;
type: "list";
length: "3"; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment