Skip to content

Instantly share code, notes, and snippets.

@benib
Last active August 29, 2015 14:06
Show Gist options
  • Save benib/16ff7c944ef367218bb1 to your computer and use it in GitHub Desktop.
Save benib/16ff7c944ef367218bb1 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.4)
// Compass (v1.0.1)
// ----
//
// use this together with modernizr feature detection
//
@mixin supports-feature($feature) {
.#{$feature} & {
@content;
}
}
@mixin not-supports-feature($feature) {
.no-#{$feature} & {
@content;
}
}
div {
@include supports-feature('touch') {
width: 50px;
}
@include not-supports-feature('touch') {
width: 30px;
}
}
.touch div {
width: 50px;
}
.no-touch div {
width: 30px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment