mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-02-20 15:04:07 +01:00
20 lines
450 B
SCSS
20 lines
450 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-primary-default);
|
|
}
|
|
|
|
.pace .pace-progress-inner {
|
|
box-shadow: 0 0 10px nb-theme(color-primary-default), 0 0 5px nb-theme(color-primary-default);
|
|
}
|
|
|
|
.pace .pace-activity {
|
|
display: none;
|
|
}
|
|
}
|