Created
April 25, 2018 11:05
-
-
Save wiyoe/1c062a0ebcba47d4f1fd5f7156de4c6d to your computer and use it in GitHub Desktop.
Bootstrap buttons overriding with sass each.
This file contains hidden or 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
| $buttons: ( | |
| info: blue, | |
| success: green, | |
| warning: yellow, | |
| danger: red | |
| ); | |
| .btn{ | |
| @each $btn-type, $btn-colour in $buttons { | |
| &.btn-#{$btn-type} { | |
| background-color: #{$btn-colour}; | |
| border-color: #{$btn-colour}; | |
| color: #fff; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment