Skip to content

Instantly share code, notes, and snippets.

@kpennell
Created December 4, 2015 18:07
Show Gist options
  • Save kpennell/7d34984e7f103c18f3fa to your computer and use it in GitHub Desktop.
Save kpennell/7d34984e7f103c18f3fa to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
.very-hidden {
text-indent: -9999px;
overflow: hidden;
white-space: nowrap;
text-decoration: none;
}
.class-a {
@extend .very-hidden
}
.class-b {
@extend .very-hidden
}
.class-c {
@extend .very-hidden
}
/*
@mixin very-hidden {
text-indent: -9999px;
overflow: hidden;
white-space: nowrap;
text-decoration: none;
}
.class-a {
@include very-hidden;
}
.class-b {
@include very-hidden;
}
.class-c {
@include very-hidden;
}*/
.very-hidden, .class-a, .class-b, .class-c {
text-indent: -9999px;
overflow: hidden;
white-space: nowrap;
text-decoration: none;
}
/*
@mixin very-hidden {
text-indent: -9999px;
overflow: hidden;
white-space: nowrap;
text-decoration: none;
}
.class-a {
@include very-hidden;
}
.class-b {
@include very-hidden;
}
.class-c {
@include very-hidden;
}*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment