From 83437b2759c8cbc195c84773a31b684485dd719b Mon Sep 17 00:00:00 2001
From: PhilJaro <122352327+PhilJaro@users.noreply.github.com>
Date: Tue, 22 Oct 2024 18:19:13 +0200
Subject: [PATCH] webapp: Enable horizontal scrolling for battery view on small
screens (#1324)
Enables horizontal scrolling for the batter views in order to not break the UI on small screens.
---
webapp/src/components/BatteryView.vue | 76 ++++++++++++++-------------
1 file changed, 39 insertions(+), 37 deletions(-)
diff --git a/webapp/src/components/BatteryView.vue b/webapp/src/components/BatteryView.vue
index 67dd1ba2..d7a9665d 100644
--- a/webapp/src/components/BatteryView.vue
+++ b/webapp/src/components/BatteryView.vue
@@ -48,43 +48,45 @@
-
-
-
- | {{ $t('battery.Property') }} |
-
- {{ $t('battery.Value') }}
- |
- {{ $t('battery.Unit') }} |
-
-
-
-
- | {{ $t('battery.' + key) }} |
-
-
- {{ $t('battery.' + prop.value) }}
-
-
- {{ prop.value }}
-
-
- {{
- $n(prop.v, 'decimal', {
- minimumFractionDigits: prop.d,
- maximumFractionDigits: prop.d,
- })
- }}
-
- |
-
-
- {{ prop.u }}
-
- |
-
-
-
+
+
+
+
+ | {{ $t('battery.Property') }} |
+
+ {{ $t('battery.Value') }}
+ |
+ {{ $t('battery.Unit') }} |
+
+
+
+
+ | {{ $t('battery.' + key) }} |
+
+
+ {{ $t('battery.' + prop.value) }}
+
+
+ {{ prop.value }}
+
+
+ {{
+ $n(prop.v, 'decimal', {
+ minimumFractionDigits: prop.d,
+ maximumFractionDigits: prop.d,
+ })
+ }}
+
+ |
+
+
+ {{ prop.u }}
+
+ |
+
+
+
+