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">
|
||||
<ng-content select="[mainContent]"></ng-content>
|
||||
</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>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -7,11 +7,11 @@ import { Component, Input, OnInit } from '@angular/core';
|
|||
})
|
||||
export class SecondaryPageComponent implements OnInit {
|
||||
@Input()
|
||||
public hideSideBarOnMobile: boolean = true;
|
||||
public hideSideBarOnMobile: boolean = false;
|
||||
@Input()
|
||||
public fixedSideBar: boolean = true;
|
||||
public fixedSideBar: boolean = false;
|
||||
@Input()
|
||||
public hideAlways: boolean = true;
|
||||
public hideAlways: boolean = false;
|
||||
|
||||
constructor(){
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue