master
Boris Voropaev 2023-11-30 15:29:11 +03:00
parent b1b774af31
commit 12884c72c2
3 changed files with 12 additions and 1 deletions

View File

@ -16,6 +16,7 @@ import {HomepageModule} from "@app/_modules/pages/home/homepage.module";
import { SliderMenuComponent } from './menu/slider-menu/slider-menu.component';
const routes: Routes = [
{path: '', component: PageComponent},
{path: '**', component: PageComponent},
{path: 'pages-menu', component:SliderMenuComponent, outlet: 'slider'},
];

View File

@ -29,7 +29,6 @@ export class LocaleComponent {
ngOnDestroy() {
this.rootSubscription.unsubscribe()
}
get rootPage(){
return this.pagesService.rootPage

View File

@ -1,3 +1,14 @@
pages-menu{
display:flex;
flex-direction: column;
padding-left: 0;
}
pages-menu{
padding-left: 24px;
}
header{
background-color: var(--white);