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 +