Skip to content

Instantly share code, notes, and snippets.

@thevangelist
Created September 8, 2016 12:37
Show Gist options
  • Save thevangelist/841c315c8cba7b401c5a36e3feed3247 to your computer and use it in GitHub Desktop.
Save thevangelist/841c315c8cba7b401c5a36e3feed3247 to your computer and use it in GitHub Desktop.
How to compose with SCSS ($extend property)
.message {
border: 1px solid #ccc;
padding: 10px;
color: #333;
}
.success {
@extend .message;
border-color: green;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment