led-server/htdocs/scss/free/_badges.scss
2018-12-29 18:59:48 +01:00

15 lines
335 B
SCSS
Executable File

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