From a9a04e623c05e84705e9ed7a1e76e815ee5e0bb9 Mon Sep 17 00:00:00 2001 From: eti Date: Wed, 29 Jul 2026 19:57:46 +0200 Subject: [PATCH] web/components: build the repo search field from Input the toolbar hand-rolled a bordered input with an absolutely positioned icon, duplicating what Input already does. route it through Input with iconLeft and drop the h-8 on the form, which was fighting Input's own min-h-9. Signed-off-by: eti --- .../lib/components/repo/RepoToolbar.svelte | 24 ++++++++----------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/web/src/lib/components/repo/RepoToolbar.svelte b/web/src/lib/components/repo/RepoToolbar.svelte index 2669dbd6..f399d6a3 100644 --- a/web/src/lib/components/repo/RepoToolbar.svelte +++ b/web/src/lib/components/repo/RepoToolbar.svelte @@ -4,6 +4,7 @@ import GitCommitHorizontal from "$icon/git-commit-horizontal"; import SearchCode from "$icon/search-code"; import Tags from "$icon/tags"; + import Input from "$lib/components/ui/Input.svelte"; import CloneDropdown from "./CloneDropdown.svelte"; import RefSelector from "./RefSelector.svelte"; import type { RepoInfo } from "./types"; @@ -34,23 +35,18 @@ />
-
-
+
-- 2.51.2