Skip to content

Instantly share code, notes, and snippets.

@wiyoe
Created April 25, 2018 11:05
Show Gist options
  • Select an option

  • Save wiyoe/1c062a0ebcba47d4f1fd5f7156de4c6d to your computer and use it in GitHub Desktop.

Select an option

Save wiyoe/1c062a0ebcba47d4f1fd5f7156de4c6d to your computer and use it in GitHub Desktop.
Bootstrap buttons overriding with sass each.
$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