-
-
Save santhosh-chinnasamy/23797b63f199d8d8d1a94f4e2b06888c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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