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.
This commit is contained in:
2026-02-07 12:14:25 +01:00
parent f282ac42fb
commit b1e5198880

View File

@@ -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;