Add funding status alerts

This commit is contained in:
leigh-mil
2019-01-28 17:12:09 -05:00
parent db1c712c8b
commit 2cbfa59b92
5 changed files with 50 additions and 10 deletions

View File

@@ -126,5 +126,27 @@
.label--expired {
background-color: $color-gray-light;
}
.to-expiring-soon {
font-weight: $font-bold;
font-size: 1.5rem;
margin-left: $gap;
&.funded {
color: $color-blue;
.icon {
@include icon-color($color-blue);
}
}
&.unfunded {
color: $color-red;
.icon {
@include icon-color($color-red);
}
}
}
}
}