暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_buttons.scss 484B

12345678910111213141516171819202122232425
  1. .btn .feather {
  2. width: 14px;
  3. height: 14px;
  4. }
  5. @each $color, $value in $theme-colors {
  6. .btn-#{$color} {
  7. @include button-color($white);
  8. @include button-color-hover($white);
  9. }
  10. }
  11. @each $color, $value in $social-colors {
  12. .btn-#{$color} {
  13. @include button-variant($value, $value);
  14. @include button-color($white);
  15. @include button-color-hover($white);
  16. }
  17. }
  18. .btn-light,
  19. .btn-white {
  20. @include button-color($gray-800);
  21. @include button-color-hover($gray-800);
  22. }