use css class for loading bar color

pull/1031/head
Rigel Kent 2018-09-07 22:46:11 +02:00
parent d972dc7f66
commit ed19bb9a32
No known key found for this signature in database
GPG Key ID: EA12971B0E438F36
2 changed files with 3 additions and 3 deletions

View File

@ -36,6 +36,6 @@
</div> </div>
</div> </div>
<ngx-loading-bar [includeSpinner]="false" color="#F1680D"></ngx-loading-bar> <ngx-loading-bar [includeSpinner]="false"></ngx-loading-bar>
<my-confirm></my-confirm> <my-confirm></my-confirm>
<simple-notifications [options]="notificationOptions"></simple-notifications> <simple-notifications [options]="notificationOptions"></simple-notifications>

View File

@ -9,7 +9,7 @@
-moz-transition: 350ms linear all; -moz-transition: 350ms linear all;
-o-transition: 350ms linear all; -o-transition: 350ms linear all;
transition: 350ms linear all; transition: 350ms linear all;
color: #29d; color: var(--mainColor);
} }
#loading-bar .bar { #loading-bar .bar {
@ -18,7 +18,7 @@
-o-transition: width 350ms; -o-transition: width 350ms;
transition: width 350ms; transition: width 350ms;
background: #29d; background: var(--mainColor);
position: fixed; position: fixed;
z-index: 10002; z-index: 10002;
top: 0; top: 0;