Skip to content

Instantly share code, notes, and snippets.

@ggazzo
Created July 18, 2014 18:16
Show Gist options
  • Save ggazzo/dae3b144c3e96b284de8 to your computer and use it in GitHub Desktop.
Save ggazzo/dae3b144c3e96b284de8 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
@mixin data-range($range) {
[data-range=#{$range}] & {
@content;
}
}
.wizard {
display: none;
&__step {
display: inline-block;
}
&__steps {
@include data-range(small){
display:block;
}
}
}
.wizard {
display: none;
}
.wizard__step {
display: inline-block;
}
[data-range=small] .wizard__steps {
display: block;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment