27 lines
555 B
SCSS
27 lines
555 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';
|
|
|
|
// loading progress bar theme
|
|
@import './pace.theme';
|
|
@import './overrides';
|
|
@import './variables';
|
|
|
|
* {
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
@include nb-install() {
|
|
// framework global styles
|
|
@include nb-theme-global();
|
|
|
|
@include nb-overrides();
|
|
};
|
|
/* You can add global styles to this file, and also import other style files */
|