Skip to content

Instantly share code, notes, and snippets.

@flops
Created October 2, 2016 01:36
Show Gist options
  • Save flops/121fe144587be75b8abf52904e062f5b to your computer and use it in GitHub Desktop.
Save flops/121fe144587be75b8abf52904e062f5b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.3.6)
// ----
// Small mixin
@mixin small-version {
@at-root .small#{&} {
@content;
}
}
.bookshelf {
color: brown;
height: 100px;
@include small-version {
height: 50px;
}
.panel {
trimmed: no;
height: 10px;
@include small-version {
height: 5px;
}
}
.door {
height: 100px;
@include small-version {
height: 50px;
}
.knob {
shape: circle;
height: 10px;
@include small-version {
height: 5px;
}
}
}
}
.bookshelf {
color: brown;
height: 100px;
}
.small.bookshelf {
height: 50px;
}
.bookshelf .panel {
trimmed: no;
height: 10px;
}
.small.bookshelf .panel {
height: 5px;
}
.bookshelf .door {
height: 100px;
}
.small.bookshelf .door {
height: 50px;
}
.bookshelf .door .knob {
shape: circle;
height: 10px;
}
.small.bookshelf .door .knob {
height: 5px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment