From 35b60bc2ca6119a4256a1d77923f30fdd3c05923 Mon Sep 17 00:00:00 2001 From: Thomas Hackner Date: Sat, 4 Jul 2026 00:44:45 +0200 Subject: [PATCH] Stop long company names from pushing the actions column off-screen MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The overview table used auto layout with whitespace-nowrap on Firma/Stelle, so a long name expanded the columns beyond w-full and the overflow-hidden container clipped the right edge — hiding Bearbeiten/Löschen. Switch to table-fixed with a colgroup for stable column widths, allow Firma/Stelle to wrap (break-words, align-top), and make the wrapper overflow-x-auto so the table scrolls horizontally on narrow viewports instead of clipping. Co-Authored-By: Claude --- views/index.ejs | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/views/index.ejs b/views/index.ejs index b97a093..dac2658 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -144,8 +144,16 @@ -
- +
+
+ + + + + + + + @@ -206,10 +214,10 @@ - -
Datum <%= new Date(app.datum).toLocaleDateString('de-DE') %> + <%= app.firma %> + <%= app.stelle %>