Files
Brandy Carney b472c6cd43 fix(badge): split badge color into separate modes
make it so they can use a different badge by default per mode

references #5222
2016-01-29 14:46:07 -05:00

28 lines
471 B
SCSS

@import "../../globals.core";
// Badge
// --------------------------------------------------
$badge-font-size: 1.3rem !default;
$badge-font-weight: bold !default;
ion-badge {
display: inline-block;
padding: 3px 8px;
min-width: 10px;
vertical-align: baseline;
text-align: center;
white-space: nowrap;
font-size: $badge-font-size;
font-weight: $badge-font-weight;
line-height: 1;
&:empty {
display: none;
}
}