Skip to content

Instantly share code, notes, and snippets.

@mrzarkovic
Created October 29, 2018 12:44
Show Gist options
  • Save mrzarkovic/9f2f8153c069209e9fc858793ee44dcb to your computer and use it in GitHub Desktop.
Save mrzarkovic/9f2f8153c069209e9fc858793ee44dcb to your computer and use it in GitHub Desktop.
SASS extend
.message {
border: 1px solid #ccc;
padding: 10px;
color: #333;
}
.success {
@extend .message;
border-color: green;
}
.error {
@extend .message;
border-color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment