Skip to content

Instantly share code, notes, and snippets.

@andrewplummer
Created May 30, 2016 16:43
Show Gist options
  • Save andrewplummer/a545923c754005b47c4900eb225a90f7 to your computer and use it in GitHub Desktop.
Save andrewplummer/a545923c754005b47c4900eb225a90f7 to your computer and use it in GitHub Desktop.
Sass hoisting @extend
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
.foo {
color: black;
}
.bar {
color: blue;
}
// ...Much later
.bar {
@extend .foo;
}
.foo, .bar {
color: black;
}
.bar {
color: blue;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment