fix layout issue
continuous-integration/drone/push Build is passing Details

master
Hannah 2026-07-15 23:25:50 -06:00
parent dd5e16bec5
commit 34bc57eb27
2 changed files with 4 additions and 4 deletions

View File

@ -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>

View File

@ -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(){