Merge pull request #152 from lbryio/fix-load-screen-colors

Fix colors on loading screen
This commit is contained in:
alexliebowitz 2017-02-01 03:28:07 -05:00 committed by GitHub
commit edd92c3c89
2 changed files with 6 additions and 1 deletions

View file

@ -10,7 +10,8 @@ $color-light-alt: hsl(hue($color-primary), 15, 85);
$color-text-dark: #000;
$color-help: rgba(0,0,0,.6);
$color-notice: #921010;
$color-warning: #c3c3c3;
$color-warning: #ffffff;
$color-load-screen-text: #c3c3c3;
$color-canvas: #f5f5f5;
$color-bg: #ffffff;
$color-bg-alt: #D9D9D9;

View file

@ -18,6 +18,10 @@
text-align: center;
}
.load-screen__details {
color: $color-load-screen-text;
}
.load-screen__details--warning {
color: $color-warning;
}