mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-20 23:14:07 +01:00
23 lines
552 B
SCSS
23 lines
552 B
SCSS
|
|
/**
|
||
|
|
* @license
|
||
|
|
* Copyright Akveo. All Rights Reserved.
|
||
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
|
*/
|
||
|
|
|
||
|
|
@mixin ngx-pace-theme() {
|
||
|
|
|
||
|
|
.pace .pace-progress {
|
||
|
|
background: nb-theme(color-fg-highlight);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pace .pace-progress-inner {
|
||
|
|
box-shadow: 0 0 10px nb-theme(color-fg-highlight), 0 0 5px nb-theme(color-fg-highlight);
|
||
|
|
}
|
||
|
|
|
||
|
|
.pace .pace-activity {
|
||
|
|
display: none;
|
||
|
|
// border-top-color: nb-theme(color-fg-highlight);
|
||
|
|
// border-left-color: nb-theme(color-fg-highlight);
|
||
|
|
}
|
||
|
|
}
|