aboutsummaryrefslogtreecommitdiff
path: root/hsm-web/Client/src/INA226.vue
diff options
context:
space:
mode:
authorPaul Oliver <contact@pauloliver.dev>2026-01-03 12:03:30 +0000
committerPaul Oliver <contact@pauloliver.dev>2026-01-03 15:14:55 +0000
commit81c97deaf7bd984a704db28f0cd676530a7b443e (patch)
tree83366972bbd29261b86c42c1816d5363bcea3f9d /hsm-web/Client/src/INA226.vue
parentde01f5b7308b83647d823cfb4b2826af849423b7 (diff)
Skins frontend
Diffstat (limited to 'hsm-web/Client/src/INA226.vue')
-rw-r--r--hsm-web/Client/src/INA226.vue12
1 files changed, 11 insertions, 1 deletions
diff --git a/hsm-web/Client/src/INA226.vue b/hsm-web/Client/src/INA226.vue
index 1487fa3..dec961b 100644
--- a/hsm-web/Client/src/INA226.vue
+++ b/hsm-web/Client/src/INA226.vue
@@ -1,6 +1,6 @@
<template>
<h2>Battery Status</h2>
- <table>
+ <table id='tina226'>
<tbody>
<tr>
<td>{{ fmt(reading.voltage, 'V') }}</td>
@@ -41,3 +41,13 @@ export default {
}
}
</script>
+
+<style>
+#tina226 td {
+ border: 1.5px solid #2aa198;
+ color: #2aa198;
+ font-family: monospace;
+ font-size: 14px;
+ padding: 5px;
+}
+</style>