mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-03-04 12:50:17 +01:00
34 lines
875 B
SCSS
34 lines
875 B
SCSS
// themes - our custom or/and out of the box themes
|
|
@import 'themes';
|
|
|
|
// framework component themes (styles tied to theme variables)
|
|
@import '~@nebular/theme/styles/globals';
|
|
@import '~@nebular/auth/styles/all';
|
|
@import '~@nebular/bootstrap/styles/globals';
|
|
// ...
|
|
|
|
// global app font size
|
|
@import './font-size';
|
|
|
|
// loading progress bar theme
|
|
@import './pace.theme';
|
|
|
|
@import './bootstrap-rtl';
|
|
|
|
// install the framework and custom global styles
|
|
@include nb-install() {
|
|
|
|
// framework global styles
|
|
@include nb-theme-global();
|
|
@include nb-auth-global();
|
|
@include nb-bootstrap-global();
|
|
|
|
// loading progress bar
|
|
@include ngx-pace-theme();
|
|
|
|
// fixed in rc.9 and can be removed after upgrade
|
|
.custom-control .custom-control-indicator {
|
|
border-radius: 50%; // TODO: quickfix for https://github.com/akveo/nebular/issues/275
|
|
}
|
|
@include bootstrap-rtl();
|
|
};
|