Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. .button {
  2. border-radius: 4px;
  3. border: 4px solid black;
  4. }
  5.  
  6. @mixin button($name, $background-color) {
  7. .#{$name}-button {
  8. background-color: $background-color;
  9. @extend .button;
  10. }
  11. }
  12.  
  13. @include button('search', blue);
  14. @include button('cancel', red);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement