Fix alignment

This commit is contained in:
Peter Maquiran
2023-02-14 11:07:13 +01:00
parent 1e34f3de62
commit b136664c48
3 changed files with 14 additions and 7 deletions
@@ -138,7 +138,7 @@
<!-- This is the box view -->
<div *ngSwitchCase="'boxview'" class="aside overflow-y-auto d-flex flex-wrap width-100 height-100">
<div *ngIf="loadCount">
<div *ngIf="loadCount" class="center-box">
<!-- List -->
<div *ngIf="hideInMobile" (click)="openAllProcessesPage()" [class.active]="selectedElement == 'allProcessesTag'" class="box-hover exp-card d-flex flex-column" >
@@ -677,4 +677,11 @@ ion-content{
.item-options-active{
display: none !important;
}
}
.center-box {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}