Fix panel on mobile
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good

This commit is contained in:
Willem Dantuma 2020-04-23 10:50:29 +02:00
parent 23ff92de6c
commit 3493e96aad
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<div class="side-panel hidden collapsed left" [ngClass]="{'hidden':!visible,'collapsed':collapsed,'resizeable':(resizeable && mobile),'resizing':resizing,'left':left}" [ngStyle]="{'top':top}"> <div class="side-panel hidden" [ngClass]="{'hidden':!visible,'collapsed':collapsed,'resizeable':(resizeable && mobile),'resizing':resizing,'left':left}" [ngStyle]="{'top':top}">
<div *ngIf="collapsable" class="arrow rounded-right p-2" (click)="handleToggleClick($event)"> <div *ngIf="collapsable" class="arrow rounded-right p-2" (click)="handleToggleClick($event)">
<i class="fa fa-chevron-left" aria-hidden="true"></i> <i class="fa fa-chevron-left" aria-hidden="true"></i>
</div> </div>

View File

@ -95,6 +95,7 @@ div.resizegrip > span {
width: 22rem; width: 22rem;
left:-24rem; left:-24rem;
height:100%; height:100%;
top: 0px;
} }
} }