From bf4e1d664f0fd8f1e4113f247044368205e1d52f Mon Sep 17 00:00:00 2001 From: simoleo89 Date: Sat, 6 Jun 2026 14:51:23 +0200 Subject: [PATCH] fix(furni-editor): tooltips wrap + no longer clipped Tip tooltips were whitespace-nowrap (one very wide line) and clipped by the Section card's overflow-hidden. Bound the bubble width with wrapping (w-44, whitespace-normal, centered) and drop overflow-hidden from Section (keeping rounded corners via rounded-t/b-xl on the header) so long tips like Custom Params render fully. --- src/components/furni-editor/views/FurniEditorEditView.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/furni-editor/views/FurniEditorEditView.tsx b/src/components/furni-editor/views/FurniEditorEditView.tsx index 97b7542..5b80193 100644 --- a/src/components/furni-editor/views/FurniEditorEditView.tsx +++ b/src/components/furni-editor/views/FurniEditorEditView.tsx @@ -34,10 +34,10 @@ const Section: FC = ({ title, children, defaultOpen = true }) => const [ open, setOpen ] = useState(defaultOpen); return ( -
+