From 3807364e730772172d73b97e916fe2c57f159cc5 Mon Sep 17 00:00:00 2001 From: Adam <2363879+adamdotdevin@users.noreply.github.com> Date: Wed, 31 Dec 2025 11:27:56 -0600 Subject: chore(app): tool args cleanup --- packages/ui/src/components/basic-tool.css | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'packages/ui/src/components/basic-tool.css') diff --git a/packages/ui/src/components/basic-tool.css b/packages/ui/src/components/basic-tool.css index 1fe1b079a..a5f1ca557 100644 --- a/packages/ui/src/components/basic-tool.css +++ b/packages/ui/src/components/basic-tool.css @@ -36,12 +36,12 @@ display: flex; align-items: center; gap: 8px; - white-space: nowrap; + min-width: 0; overflow: hidden; - text-overflow: ellipsis; } [data-slot="basic-tool-tool-title"] { + flex-shrink: 0; font-family: var(--font-family-sans); font-size: var(--font-size-small); font-style: normal; @@ -56,6 +56,11 @@ } [data-slot="basic-tool-tool-subtitle"] { + flex-shrink: 1; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; font-family: var(--font-family-sans); font-size: var(--font-size-small); font-style: normal; @@ -66,6 +71,11 @@ } [data-slot="basic-tool-tool-arg"] { + flex-shrink: 1; + min-width: 0; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; font-family: var(--font-family-sans); font-size: var(--font-size-small); font-style: normal; -- cgit v1.2.3