Skip to content

Instantly share code, notes, and snippets.

@StanAngeloff
Created January 4, 2012 22:20
Show Gist options
  • Save StanAngeloff/1562503 to your computer and use it in GitHub Desktop.
Save StanAngeloff/1562503 to your computer and use it in GitHub Desktop.
.my-button {
border-radius: 10px;
}
#page .my-button a {
color: red;
}
@mixin button {
border-radius: 10px;
#page & a {
color: red;
}
}
.my-button {
@extend button;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment