_label.scss 232 B

12345678910111213
  1. // tags
  2. @mixin badge-variant($color) {
  3. background-color: $color;
  4. &.badge-glow{
  5. box-shadow: 0px 0px 10px $color;
  6. }
  7. &[href] {
  8. @include hover-focus {
  9. background-color: darken($color, 10%);
  10. }
  11. }
  12. }