From b1e51988801f8734d4714566ce9294978ca9ccdc Mon Sep 17 00:00:00 2001 From: nessi Date: Sat, 7 Feb 2026 12:14:25 +0100 Subject: [PATCH] Update CSS overflow properties for visibility Changed `overflow` from `hidden` to `visible` in multiple elements to ensure proper content display. This adjustment avoids clipping issues and aligns with the desired layout behavior. --- frontend/src/AppLayout.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/AppLayout.css b/frontend/src/AppLayout.css index 8565a7c..a4053e6 100644 --- a/frontend/src/AppLayout.css +++ b/frontend/src/AppLayout.css @@ -41,7 +41,7 @@ body { /* MAIN: Tools | Board | PlayerRail */ .mainRow { min-height: 0; - overflow: hidden; + overflow: visible; display: grid; /* Tools bewusst schmaler, Board bekommt Bühne */ @@ -106,7 +106,7 @@ body { .playerRailInner { width: 100%; height: 100%; - overflow: hidden; /* hier wird wieder sauber gecropped */ + overflow: visible; /* hier wird wieder sauber gecropped */ border-radius: 18px; /* etwas kleiner als außen */ display: grid; justify-items: center; @@ -120,7 +120,7 @@ body { .playerRailList { min-height: 0; - overflow: hidden; + overflow: visible; display: grid; gap: 10px; align-content: start;