Skip to content

Instantly share code, notes, and snippets.

@renaudleo
Created August 1, 2014 14:49
Show Gist options
  • Save renaudleo/3eb99858542651bdcbbf to your computer and use it in GitHub Desktop.
Save renaudleo/3eb99858542651bdcbbf to your computer and use it in GitHub Desktop.
// SCSS
.inline-list > li{
display: inline-block;
}
.tools {
@extend .inline-list;
}
// CSS (expected output)
.inline-list > li, .tools > li {
display: inline-block;
}
// CSS (actual output)
.inline-list > li, .inline-list > .tools {
display: inline-block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment