fix(badge): change default badge color to primary

per Ben

closes #5222
This commit is contained in:
Brandy Carney
2016-01-29 14:41:24 -05:00
parent f8938c63d2
commit 93b9891481

View File

@@ -5,6 +5,7 @@
$badge-font-size: 1.3rem !default;
$badge-font-weight: bold !default;
$badge-background-color: map-get($colors, primary);
ion-badge {
@@ -21,7 +22,8 @@ ion-badge {
font-weight: $badge-font-weight;
line-height: 1;
background: #ccc;
background-color: $badge-background-color;
color: inverse($badge-background-color);
&:empty {
display: none;