diff --git a/webapp/src/components/InverterChannelInfo.vue b/webapp/src/components/InverterChannelInfo.vue
index 359d207..b7ebc27 100644
--- a/webapp/src/components/InverterChannelInfo.vue
+++ b/webapp/src/components/InverterChannelInfo.vue
@@ -25,7 +25,7 @@
| {{ $t('inverterchannelproperty.' + key) }} |
-
+ |
{{
$n(property.v, 'decimal', {
minimumFractionDigits: property.d,
diff --git a/webapp/src/scss/styles.scss b/webapp/src/scss/styles.scss
index bdad041..4c468e5 100644
--- a/webapp/src/scss/styles.scss
+++ b/webapp/src/scss/styles.scss
@@ -52,3 +52,8 @@ div.card.card-table div.card-body {
div.card div.card-body > :last-child {
margin-bottom: auto !important;
}
+
+div.card.card-table table .value {
+ text-align: right;
+ padding-right: 0;
+}
|