Skip to content

Commit

Permalink
[#1237] responsive ha status div
Browse files Browse the repository at this point in the history
  • Loading branch information
pzadroga committed Dec 20, 2023
1 parent 7faf834 commit 5df1c25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webui/src/app/ha-status/ha-status.component.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<div>
<h3>High Availability</h3>
<div *ngIf="hasStatus()" style="width: 800px" class="grid">
<div class="col-6">
<div *ngIf="hasStatus()" class="grid">
<div class="col-12 lg:col-6">
<app-ha-status-panel
panelTitle="Local server"
serverName="local"
Expand All @@ -10,7 +10,7 @@ <h3>High Availability</h3>
[singleActiveServer]="!remoteServer()"
></app-ha-status-panel>
</div>
<div class="col-6" *ngIf="remoteServer()">
<div class="col-12 lg:col-6" *ngIf="remoteServer()">
<app-ha-status-panel
panelTitle="Remote server"
serverName="remote"
Expand Down

0 comments on commit 5df1c25

Please sign in to comment.