mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-04-04 15:41:37 +00:00
35 lines
1.0 KiB
TypeScript
35 lines
1.0 KiB
TypeScript
import { FuseConfig } from '@fuse/types';
|
|
|
|
/**
|
|
* Default Fuse Configuration
|
|
*
|
|
* You can edit these options to change the default options. All these options also can be changed per component
|
|
* basis. See `app/main/pages/authentication/login/login.component.ts` constructor method to learn more
|
|
* about changing these options per component basis.
|
|
*/
|
|
|
|
export const fuseConfig: FuseConfig = {
|
|
layout : {
|
|
style : 'vertical-layout-1',
|
|
width : 'fullwidth',
|
|
navbar : {
|
|
background: 'mat-fuse-dark-700-bg',
|
|
folded : false,
|
|
hidden : false,
|
|
position : 'left',
|
|
variant : 'vertical-style-1'
|
|
},
|
|
toolbar: {
|
|
background: 'mat-white-500-bg',
|
|
hidden : false,
|
|
position : 'below-static'
|
|
},
|
|
footer : {
|
|
background: 'mat-fuse-dark-900-bg',
|
|
hidden : false,
|
|
position : 'below-fixed'
|
|
}
|
|
},
|
|
customScrollbars: true
|
|
};
|