_badges.scss 335 B

1234567891011121314
  1. // Badges
  2. .badge {
  3. box-shadow: $z-depth-1;
  4. border-radius: $border-radius-base;
  5. color: $white !important;
  6. }
  7. .badge-pill {
  8. border-radius: $badge-pill-border-radius;
  9. padding-right: $badge-pill-padding-x;
  10. padding-left: $badge-pill-padding-x;
  11. }
  12. @each $name, $color in $basic-mdb-colors {
  13. @include make-badge($name, $color);
  14. }