Please refer Faq's page in documentation itself for queries of customization like colors,rtl ,dark,transparent styles,etc..
src/
├── app/
| ├── authentication
| ├── components
| ├── pages
| ├── shared
| ├── app-routing.module.ts
| ├── app.component.html
| ├── app.component.scss
| ├── app.component.spec.ts
| ├── app.component.ts
| └── app.module.ts
Steps to convert vertical-menu to horizontal-menu
By default, You'll be getting vertical menu.
const routes: Routes = [
{
path: '',
component: ContentLayoutComponent,
canActivate: [AdminGuard],
children: content
},
];
Steps to convert default-menu to boxed-menu
By default, You'll be getting default menu. If you want to convert into Boxed-menu then follow the below steps.
<body class="" >
<body class="layout-boxed" >
Steps to convert fixed-layout to scrollable-layout
By default, You'll be getting fixed-layout. If you want to convert into scrollable-layout then follow the below steps.
<body class="" >
<body class="scrollable-layout" >