Skip to content

Instantly share code, notes, and snippets.

@lozandier
Last active August 29, 2015 14:22
Show Gist options
  • Select an option

  • Save lozandier/f539356dfdb064514e07 to your computer and use it in GitHub Desktop.

Select an option

Save lozandier/f539356dfdb064514e07 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.4)
// ----
.foo {
font-family: sans-serif;
--style1: red;
// Works as expected...
color: var(--dragon);
// Nope as far as custom properties as expected because of the existing shorthand syntax the tokenizer/parser allows
--style2: {
color: pink;
}
//@apply(--style2) apply doesn' work…
// But
}
.foo {
font-family: sans-serif;
--style1: red;
color: var(--dragon);
--style2-color: pink; }
<div class='foo'>Testing</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment