ngx-admin/src/app/@theme/styles/styles.scss

32 lines
788 B
SCSS
Raw Normal View History

// themes - our custom or/and out of the box themes
2017-08-03 13:53:18 +03:00
@import 'themes';
// framework component themes (styles tied to theme variables)
@import '~@nebular/theme/styles/globals';
@import '~@nebular/auth/styles/all';
// global app font size
@import './font-size';
// loading progress bar theme
@import './pace.theme';
2018-05-11 17:25:02 +03:00
@import './bootstrap-rtl';
// install the framework and custom global styles
@include nb-install() {
2017-08-03 13:53:18 +03:00
// framework global styles
@include nb-theme-global();
@include nb-auth-global();
// loading progress bar
@include ngx-pace-theme();
2018-02-26 11:57:22 +03:00
2018-05-11 17:25:02 +03:00
// fixed in rc.9 and can be removed after upgrade
2018-02-26 11:57:22 +03:00
.custom-control .custom-control-indicator {
border-radius: 50%; // TODO: quickfix for https://github.com/akveo/nebular/issues/275
}
2018-05-11 17:25:02 +03:00
@include bootstrap-rtl();
};