Skip to content

Instantly share code, notes, and snippets.

@Snugug
Created September 1, 2015 14:44
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 Snugug/17649e207a82c4efb946 to your computer and use it in GitHub Desktop.
Save Snugug/17649e207a82c4efb946 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
@function foo {
@return 'bar';
}
@mixin bar {
content: 'baz';
}
.content {
content: foo;
content: foo();
@include bar;
}
.content {
content: foo;
content: "bar";
content: 'baz';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment