made dollar green default colour for bitcoin cash

This commit is contained in:
Kadir Sekha 2017-11-17 15:43:04 +09:00
commit be5c7b4728
6 changed files with 31 additions and 14 deletions

View file

@ -8,6 +8,7 @@
/* background-color and color defaults should be the same */
$default-wallet-color: map-get( map-get($v-wallet-color-map, $v-default-wallet-color-index) , color);
$default-cashwallet-color: map-get( map-get($v-wallet-color-map, $v-default-cashwallet-color-index) , color);
.wallet-background-color-default {
background-color: $default-wallet-color;
@ -17,6 +18,10 @@ $default-wallet-color: map-get( map-get($v-wallet-color-map, $v-default-wallet-c
color: $default-wallet-color;
}
.cashwallet-color-default {
color: $default-cashwallet-color;
}
/* generate classes for all colors */
@each $id, $map in $v-wallet-color-map {
.wallet-color-#{$id} {