Skip to content

Instantly share code, notes, and snippets.

@niaccurshi
Created November 7, 2014 17:38
Show Gist options
  • Save niaccurshi/165856ecc5de533210a8 to your computer and use it in GitHub Desktop.
Save niaccurshi/165856ecc5de533210a8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
// element
@mixin __child($child) {
&#{$child} {
width: 0;
}
&:hover &#{$child} {
width: 100%;
}
}
// base
.container {
width: 100%;
@include __child('__nav');
}
.container {
width: 100%;
}
.container__nav {
width: 0;
}
.container:hover .container__nav {
width: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment