Skip to content

Instantly share code, notes, and snippets.

@roytomeij
Last active December 20, 2015 06:38
Show Gist options
  • Save roytomeij/6086877 to your computer and use it in GitHub Desktop.
Save roytomeij/6086877 to your computer and use it in GitHub Desktop.
@mixin hide-text {
text-indent: -9999px;
overflow: hidden;
}
.foo {
@include hide-text;
}
.bar {
@include hide-text;
}
.baz {
@include hide-text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment