diff --git a/src/app/search-widget.css b/src/app/search-widget.css index 38812b8..5ddb95b 100644 --- a/src/app/search-widget.css +++ b/src/app/search-widget.css @@ -82,7 +82,7 @@ display: grid !important; place-items: center !important; padding: 8px !important; - overflow: visible !important; + overflow: hidden !important; } /* Bearbeitungsmodus: unterhalb Header zentrieren, Resize-Ecke freihalten */ @@ -96,7 +96,7 @@ display: grid !important; place-items: center !important; padding: 6px 10px 12px 8px !important; - overflow: visible !important; + overflow: hidden !important; } /* Suchformular mittig, einzeilig, mit Luft zur Resize-Ecke */ diff --git a/src/components/DashboardGrid.tsx b/src/components/DashboardGrid.tsx index b47d2fe..6757ab8 100644 --- a/src/components/DashboardGrid.tsx +++ b/src/components/DashboardGrid.tsx @@ -24,7 +24,7 @@ function clamp(value: number, min: number, max: number): number { function getWidgetMinimumSize(widget: DashboardGridWidget): { minW: number; minH: number } { if (widget.type === "search") { - return { minW: 8, minH: 3 }; + return { minW: 8, minH: 5 }; } if (widget.type === "clock") {