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. If you want to convert into horizontal-menu then follow the below steps.
const routes: Routes = [
{ path: '', component: FullLayoutComponent, children: Full_Content_Routes },
// { path: '', component: HoriFullLayoutComponent, children: Full_Content_Routes },
];
const routes: Routes = [
// { path: '', component: FullLayoutComponent, children: Full_Content_Routes },
{ path: '', component: HoriFullLayoutComponent, children: Full_Content_Routes },
];
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" >
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" >