Skip to content

Instantly share code, notes, and snippets.

@tobaco
Created September 30, 2014 12:35
Show Gist options
  • Save tobaco/4f56a2672c5a3d200e4e to your computer and use it in GitHub Desktop.
Save tobaco/4f56a2672c5a3d200e4e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
$modules: () !default;
@mixin exports($name) {
@if (not index($modules, $name)) {
$modules: append($modules, $name);
@content;
}
}
@include exports("global") {
body:before {
content: "it's me";
}
}
@include exports("global") {
body:after {
content: " |||||||||| it's me again, but i shouldn't be here";
}
}
body:before {
content: "it's me";
}
body:after {
content: " |||||||||| it's me again, but i shouldn't be here";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment