Skip to content

Instantly share code, notes, and snippets.

@santhosh-chinnasamy
Created January 1, 2019 13:02
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
.button {
height: 30px;
font-size: 16px;
padding: 0 2rem;
border-radius: 4px;
}
.button-default {
@extend .button;
color: #404040;
border: 1px solid #404040;
}
.button-success {
@extend .button;
background: green;
color: white;
}
.button-danger {
@extend .button;
background: red;
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment