Skip to content

Instantly share code, notes, and snippets.

@advitum
Last active November 2, 2016 09:44
Show Gist options
  • Save advitum/ee2b5c5f072c53ea8bdf6141abea3119 to your computer and use it in GitHub Desktop.
Save advitum/ee2b5c5f072c53ea8bdf6141abea3119 to your computer and use it in GitHub Desktop.
Just some random useful Compass mixins I have written and collected over the time.
// Proper clearfix without overflow:hidden
@mixin clearfix {
&:after {
content: "";
width: 100%;
height: 0;
display: block;
clear: both;
}
}
// On hover, the color property will be transitioned
@mixin hoverToColor($color) {
@include transition(color 0.1s linear);
&:hover, &:active, &:focus {
color: $color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment