Skip to content

Instantly share code, notes, and snippets.

@danro
Created September 9, 2012 19:40
Show Gist options
  • Save danro/3686771 to your computer and use it in GitHub Desktop.
Save danro/3686771 to your computer and use it in GitHub Desktop.
SCSS hover-active mixin
@mixin hover-active {
&:hover {
.no-touch & {
@content;
}
}
&:active {
.touch & {
@content;
}
}
}
a {
@include hover-active {
border: 1px solid red;
color: blue;
}
}
@muhammadaminusmonov
Copy link

thank you it helps me a lot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment