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 */ /* MAIN: Tools | Board | PlayerRail */
.mainRow { .mainRow {
min-height: 0; min-height: 0;
overflow: hidden; overflow: visible;
display: grid; display: grid;
/* Tools bewusst schmaler, Board bekommt Bühne */ /* Tools bewusst schmaler, Board bekommt Bühne */
@@ -106,7 +106,7 @@ body {
.playerRailInner { .playerRailInner {
width: 100%; width: 100%;
height: 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 */ border-radius: 18px; /* etwas kleiner als außen */
display: grid; display: grid;
justify-items: center; justify-items: center;
@@ -120,7 +120,7 @@ body {
.playerRailList { .playerRailList {
min-height: 0; min-height: 0;
overflow: hidden; overflow: visible;
display: grid; display: grid;
gap: 10px; gap: 10px;
align-content: start; align-content: start;