Merge pull request #4 from dengr1065/master

Fix Shop/Upgrades text colors
pull/33/head
tobspr 4 years ago committed by GitHub
commit 5d8f02336c

@ -33,6 +33,10 @@
flex-direction: row-reverse; flex-direction: row-reverse;
justify-content: flex-end; justify-content: flex-end;
@include DarkThemeOverride {
color: #fff;
}
.tier { .tier {
@include S(margin-right, 9px); @include S(margin-right, 9px);
background: $colorGreenBright; background: $colorGreenBright;
@ -120,6 +124,9 @@
pointer-events: all; pointer-events: all;
@include IncreasedClickArea(5px); @include IncreasedClickArea(5px);
transition: opacity 0.12s ease-in-out; transition: opacity 0.12s ease-in-out;
@include DarkThemeInvert;
&:hover { &:hover {
opacity: 0.7; opacity: 0.7;
} }
@ -174,6 +181,7 @@
@include DarkThemeOverride { @include DarkThemeOverride {
background: #333438; background: #333438;
color: #fff;
} }
.progressBar { .progressBar {
@ -189,6 +197,10 @@
transition-property: width, background-color; transition-property: width, background-color;
background: #bdbfca; background: #bdbfca;
@include DarkThemeOverride {
background: #8c8d96;
}
&.complete { &.complete {
background-color: $colorGreenBright; background-color: $colorGreenBright;
} }

Loading…
Cancel
Save