Skip to content

Instantly share code, notes, and snippets.

@santhosh-chinnasamy
Created January 1, 2019 13:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save santhosh-chinnasamy/23797b63f199d8d8d1a94f4e2b06888c to your computer and use it in GitHub Desktop.
Save santhosh-chinnasamy/23797b63f199d8d8d1a94f4e2b06888c to your computer and use it in GitHub Desktop.
.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