diff --git a/frontend/components/accountOverview.vue b/frontend/components/accountOverview.vue
index b427590..e930f62 100644
--- a/frontend/components/accountOverview.vue
+++ b/frontend/components/accountOverview.vue
@@ -79,7 +79,7 @@
Category
Description |
-
+ |
Amount
|
@@ -160,7 +160,7 @@
{{ accountIdToName[tx.category] }}
| {{ tx.description }} |
-
+ |
{{ formatNumber(tx.amount) }} €
|
diff --git a/frontend/style.scss b/frontend/style.scss
index a136823..1d46fd0 100644
--- a/frontend/style.scss
+++ b/frontend/style.scss
@@ -12,4 +12,10 @@ $fa-font-path: "../node_modules/@fortawesome/fontawesome-free/webfonts";
.minimized-column {
width: 0.1%;
white-space: nowrap;
+}
+
+.minimized-amount {
+ min-width: 150px;
+ width: 0.1%;
+ white-space: nowrap;
}
\ No newline at end of file
|