This commit is contained in:
2024-11-19 20:19:19 +01:00
parent bc77eec906
commit 3aa4688471
2 changed files with 9 additions and 1 deletions
@@ -44,7 +44,7 @@
<!-- <th/>-->
<th />
<th>Saldo</th>
<th v-for="amount in sums" class="border-left">
<th v-for="amount in sums" class="border-left" :class="{ inplus: amount > 0, inminus: amount < 0 }">
<span class="bold">{{ amount }}</span>
</th>
</tr>
+8
View File
@@ -173,3 +173,11 @@ th.rotate > div {
text-decoration: line-through;
color: lightgray;
}
.inplus {
background-color: lightgreen;
}
.inminus {
background-color: red;
}