This repository has been archived on 2021-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
UTPass-Website/mdb/scss/free/_badges.scss
2019-09-15 13:19:29 +02:00

16 lines
336 B
SCSS

// Badges
.badge {
color: $white !important;
border-radius: $border-radius-base;
box-shadow: $z-depth-1;
}
.badge-pill {
padding-right: $badge-pill-padding-x;
padding-left: $badge-pill-padding-x;
border-radius: $badge-pill-border-radius;
}
@each $name, $color in $basic-mdb-colors {
@include make-badge($name, $color);
}