From dcaecd806f3af6dbd149ee984c2c696f23fb79af Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Sun, 5 Apr 2026 19:33:12 +0200 Subject: [PATCH] fix(web): constrain search icon size in QueryInput The Icon wrapper's size-4 didn't constrain the child SVG. Add [&>svg]:size-4 to force the icon to 16px. Co-Authored-By: Claude Opus 4.6 (1M context) --- webui2/src/components/shared/query-input.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui2/src/components/shared/query-input.tsx b/webui2/src/components/shared/query-input.tsx index d576cfc3f7335422eb07eb13f9443c3db48364fa..881685145c6aef6623bcd9e580c8841ff779258d 100644 --- a/webui2/src/components/shared/query-input.tsx +++ b/webui2/src/components/shared/query-input.tsx @@ -378,7 +378,7 @@ interface IconProps { export function Icon({ children }: IconProps) { return ( -
+
{children}
);