fix layout issue
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
dd5e16bec5
commit
34bc57eb27
|
|
@ -3,7 +3,7 @@
|
||||||
<div class="main-content align-top" [class.width100]="hideAlways">
|
<div class="main-content align-top" [class.width100]="hideAlways">
|
||||||
<ng-content select="[mainContent]"></ng-content>
|
<ng-content select="[mainContent]"></ng-content>
|
||||||
</div><!--
|
</div><!--
|
||||||
--><div class="side-bar align-top" [class.hide-on-mobile]="hideSideBarOnMobile" [class.display-none]="true" [class.fixed-side-bar]="fixedSideBar">
|
--><div class="side-bar align-top" [class.hide-on-mobile]="hideSideBarOnMobile" [class.display-none]="hideAlways" [class.fixed-side-bar]="fixedSideBar">
|
||||||
<ng-content select="[sideBar]"></ng-content>
|
<ng-content select="[sideBar]"></ng-content>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -7,11 +7,11 @@ import { Component, Input, OnInit } from '@angular/core';
|
||||||
})
|
})
|
||||||
export class SecondaryPageComponent implements OnInit {
|
export class SecondaryPageComponent implements OnInit {
|
||||||
@Input()
|
@Input()
|
||||||
public hideSideBarOnMobile: boolean = true;
|
public hideSideBarOnMobile: boolean = false;
|
||||||
@Input()
|
@Input()
|
||||||
public fixedSideBar: boolean = true;
|
public fixedSideBar: boolean = false;
|
||||||
@Input()
|
@Input()
|
||||||
public hideAlways: boolean = true;
|
public hideAlways: boolean = false;
|
||||||
|
|
||||||
constructor(){
|
constructor(){
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue