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

29 lines
827 B
SCSS
Raw Normal View History

// nga theming framework
@import '~@akveo/nga-theme/styles/theming';
// nga our of the box themes
@import '~@akveo/nga-theme/styles/themes';
// which themes you what to enable (empty to enable all - not recommended)
$nga-enabled-themes: (default, light, cosmic);
$nga-themes: nga-register-theme((
// app wise variables for each theme
2017-07-26 15:12:48 +03:00
sidebar-header-gap: 2rem,
2017-07-26 20:39:12 +03:00
sidebar-header-height: initial,
layout-content-width: 1400px,
), default, default);
$nga-themes: nga-register-theme((
// app wise variables for each theme
2017-07-26 15:12:48 +03:00
sidebar-header-gap: 2rem,
2017-07-26 20:39:12 +03:00
sidebar-header-height: initial,
layout-content-width: 1400px,
), cosmic, cosmic);
$nga-themes: nga-register-theme((
// app wise variables for each theme
2017-07-26 15:12:48 +03:00
sidebar-header-gap: 2rem,
2017-07-26 20:39:12 +03:00
sidebar-header-height: initial,
layout-content-width: 1400px,
), light, light);