Skip to content

Commit

Permalink
[#1237] responsive data storage div
Browse files Browse the repository at this point in the history
  • Loading branch information
pzadroga committed Dec 14, 2023
1 parent 8e76f9b commit 7faf834
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions webui/src/app/kea-app-tab/kea-app-tab.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ <h3>Overview</h3>
<h3>Data Storage</h3>
<div class="grid">
<ng-container *ngIf="daemon.files">
<div class="col-6">
<div class="col-12 lg:col-6">
<p-fieldset id="data-storage-files-fieldset" legend="Files">
<table style="width: 100%">
<tr *ngFor="let file of daemon.files">
Expand All @@ -275,9 +275,8 @@ <h3>Data Storage</h3>
</table>
</p-fieldset>
</div>
<div class="col-6"></div>
</ng-container>
<div *ngIf="daemon.backends" class="col-6">
<div *ngIf="daemon.backends" class="col-12 lg:col-6">
<p-fieldset id="data-storage-backends-fieldset" legend="Database Backends">
<div *ngFor="let backend of daemon.backends">
<i style="color: grey" class="fa fa-database"></i>
Expand Down

0 comments on commit 7faf834

Please sign in to comment.