Skip to content

Instantly share code, notes, and snippets.

@kimniche
Last active March 29, 2018 13:31
Show Gist options
  • Select an option

  • Save kimniche/3b0508566eb5a9493dcddeef49f7e567 to your computer and use it in GitHub Desktop.

Select an option

Save kimniche/3b0508566eb5a9493dcddeef49f7e567 to your computer and use it in GitHub Desktop.
<div class="platform--touch">
    <div class="puppy">
       Puppies :tada:
    </div>
</div>
.touch-device(@rules) {
    .platform--touch & {
        @rules();
    }
}

.puppy {
  background: purple;
  
  .touch-device({
        color: blue;
    });
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment