From e66a730570b44a0620ddc0ff27fdba5943a8a4bb Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Fri, 19 Jan 2024 00:21:13 +0100 Subject: [PATCH] Fix: Amount column too small to enter number Signed-off-by: Knut Ahlers --- frontend/components/accountOverview.vue | 4 ++-- frontend/style.scss | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) 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