use css class for loading bar color
This commit is contained in:
parent
d972dc7f66
commit
ed19bb9a32
|
@ -36,6 +36,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<ngx-loading-bar [includeSpinner]="false" color="#F1680D"></ngx-loading-bar>
|
||||
<ngx-loading-bar [includeSpinner]="false"></ngx-loading-bar>
|
||||
<my-confirm></my-confirm>
|
||||
<simple-notifications [options]="notificationOptions"></simple-notifications>
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
-moz-transition: 350ms linear all;
|
||||
-o-transition: 350ms linear all;
|
||||
transition: 350ms linear all;
|
||||
color: #29d;
|
||||
color: var(--mainColor);
|
||||
}
|
||||
|
||||
#loading-bar .bar {
|
||||
|
@ -18,7 +18,7 @@
|
|||
-o-transition: width 350ms;
|
||||
transition: width 350ms;
|
||||
|
||||
background: #29d;
|
||||
background: var(--mainColor);
|
||||
position: fixed;
|
||||
z-index: 10002;
|
||||
top: 0;
|
||||
|
|
Loading…
Reference in New Issue