From 927d13191dfcd5d7f3d8a9489825666e95034b93 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 28 Nov 2025 08:53:00 +0100 Subject: [PATCH] garaga page 19 --- apps/ui/templates/garage.html | 67 ++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 24 deletions(-) diff --git a/apps/ui/templates/garage.html b/apps/ui/templates/garage.html index 3eac5b4..b2009e7 100644 --- a/apps/ui/templates/garage.html +++ b/apps/ui/templates/garage.html @@ -195,6 +195,19 @@ gap: 8px; } + .phase-row { + display: flex; + gap: 8px; + } + + .phase-value.full-width { + flex: 1; + } + + .phase-value.half-width { + flex: 1; + } + .phase-value { display: flex; justify-content: space-between; @@ -448,51 +461,57 @@

Phase 1

-
+
${state.phase1_power?.toFixed(0) || '--'} W
-
- ${state.phase1_voltage?.toFixed(1) || '--'} - V -
-
- ${state.phase1_current?.toFixed(2) || '--'} - A +
+
+ ${state.phase1_voltage?.toFixed(1) || '--'} + V +
+
+ ${state.phase1_current?.toFixed(2) || '--'} + A +

Phase 2

-
+
${state.phase2_power?.toFixed(0) || '--'} W
-
- ${state.phase2_voltage?.toFixed(1) || '--'} - V -
-
- ${state.phase2_current?.toFixed(2) || '--'} - A +
+
+ ${state.phase2_voltage?.toFixed(1) || '--'} + V +
+
+ ${state.phase2_current?.toFixed(2) || '--'} + A +

Phase 3

-
+
${state.phase3_power?.toFixed(0) || '--'} W
-
- ${state.phase3_voltage?.toFixed(1) || '--'} - V -
-
- ${state.phase3_current?.toFixed(2) || '--'} - A +
+
+ ${state.phase3_voltage?.toFixed(1) || '--'} + V +
+
+ ${state.phase3_current?.toFixed(2) || '--'} + A +