From 051de0eea3fd8d48b4915a8afebe15d04aac17dd Mon Sep 17 00:00:00 2001 From: Jan Date: Mon, 13 Apr 2026 18:22:46 +0200 Subject: [PATCH] =?UTF-8?q?Ich=20habe=20den=20Desktop-Overflow=20jetzt=20a?= =?UTF-8?q?n=20der=20eigentlichen=20Ursache=20angefasst=20in=20dashboard-s?= =?UTF-8?q?hell.tsx.=20Die=20=C3=9Cbersicht=20ist=20nicht=20mehr=20gleichz?= =?UTF-8?q?eitig=20Flex-Layout=20und=20Scroll-Container,=20sondern=20hat?= =?UTF-8?q?=20jetzt=20einen=20sauberen=20=C3=A4u=C3=9Feren=20Scroll-Wrappe?= =?UTF-8?q?r=20plus=20inneren=20max-content-Track.=20Zus=C3=A4tzlich=20sch?= =?UTF-8?q?rumpft=20die=20rechte=20Desktop-Spalte=20jetzt=20korrekt=20mit?= =?UTF-8?q?=20flex:=201=201=200%,=20damit=20sie=20keinen=20zweiten=20Seite?= =?UTF-8?q?n-Overflow=20mehr=20erzeugt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dashboard/dashboard-shell.tsx | 109 ++++++++++++------- 1 file changed, 72 insertions(+), 37 deletions(-) diff --git a/src/components/dashboard/dashboard-shell.tsx b/src/components/dashboard/dashboard-shell.tsx index b467c5a..87de43c 100644 --- a/src/components/dashboard/dashboard-shell.tsx +++ b/src/components/dashboard/dashboard-shell.tsx @@ -1959,49 +1959,84 @@ export function DashboardShell({ ) : null} - - {(isCompactLayout ? (mobileSelectedGroup ? [mobileSelectedGroup] : []) : visibleGroups).map((group) => ( - - - - ))} - + {isCompactLayout ? ( + + {(mobileSelectedGroup ? [mobileSelectedGroup] : []).map((group) => ( + + + + ))} + + ) : ( + + + {visibleGroups.map((group) => ( + + + + ))} + + + )} ); const desktopSectionContent = desktopSection === "overview" ? ( - + {actionCards} - {overviewContent} + {overviewContent} ) : desktopSection === "periods" ? (