Skip to content

Instantly share code, notes, and snippets.

@rcaracaus
Created January 28, 2015 02:59
Show Gist options
  • Save rcaracaus/82b1a2ffeff88422177b to your computer and use it in GitHub Desktop.
Save rcaracaus/82b1a2ffeff88422177b to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
.button,
%button {
border-radius: 5px;
a {
text-decoration: none;
}
&--red {
@extend %button;
background: red;
}
}
.my-red-button {
@extend %button--red;
}
.button,
.button--red,
.my-red-button {
border-radius: 5px;
}
.button a,
.button--red a,
.my-red-button a {
text-decoration: none;
}
.button--red,
.my-red-button {
background: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment