mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-13 04:58:51 +01:00
42 lines
1.1 KiB
SCSS
42 lines
1.1 KiB
SCSS
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
|
|
@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400,500,600,700,800&display=swap');
|
|
|
|
// 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/globals';
|
|
|
|
@import 'bootstrap/scss/functions';
|
|
@import 'bootstrap/scss/variables';
|
|
@import 'bootstrap/scss/mixins';
|
|
@import 'bootstrap/scss/grid';
|
|
|
|
@import './material/angular-material';
|
|
|
|
@import './material/angular-material';
|
|
|
|
// loading progress bar theme
|
|
@import './pace.theme';
|
|
|
|
@import './layout';
|
|
@import './overrides';
|
|
@import './material/material-overrides';
|
|
|
|
// install the framework and custom global styles
|
|
@include nb-install() {
|
|
|
|
@include angular-material();
|
|
|
|
// framework global styles
|
|
@include nb-theme-global();
|
|
@include nb-auth-global();
|
|
|
|
@include ngx-layout();
|
|
// loading progress bar
|
|
@include ngx-pace-theme();
|
|
|
|
@include nb-overrides();
|
|
@include material-overrides();
|
|
};
|