_badge.scss 230 B

123456789101112
  1. @mixin badge-variant($bg) {
  2. color: color-yiq($bg);
  3. background-color: $bg;
  4. &[href] {
  5. @include hover-focus {
  6. color: color-yiq($bg);
  7. text-decoration: none;
  8. background-color: darken($bg, 10%);
  9. }
  10. }
  11. }