From 84558e0b9ac45f8bb3370ab92595bf9f378b666a Mon Sep 17 00:00:00 2001 From: Deon Sanchez <69873175+deon-sanchez@users.noreply.github.com> Date: Fri, 3 Oct 2025 10:48:21 -0600 Subject: [PATCH] same button heights --- frontend/components/knowledge-dropdown.tsx | 4 ++-- frontend/src/app/settings/page.tsx | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/components/knowledge-dropdown.tsx b/frontend/components/knowledge-dropdown.tsx index ab097138..2d991e7b 100644 --- a/frontend/components/knowledge-dropdown.tsx +++ b/frontend/components/knowledge-dropdown.tsx @@ -442,7 +442,7 @@ export function KnowledgeDropdown({ disabled={isLoading} className={cn( variant === "button" - ? "rounded-lg h-10 px-4 flex items-center gap-2 bg-primary text-primary-foreground hover:bg-primary/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed" + ? "rounded-lg h-10 px-4 flex items-center gap-2 bg-primary font-medium text-primary-foreground text-sm hover:bg-primary/90 transition-colors disabled:opacity-50 disabled:cursor-not-allowed" : "text-sm group flex p-3 w-full justify-start font-medium cursor-pointer hover:bg-accent hover:text-accent-foreground rounded-lg transition-all disabled:opacity-50 disabled:cursor-not-allowed", variant === "navigation" && active ? "bg-accent text-accent-foreground shadow-sm" @@ -458,7 +458,7 @@ export function KnowledgeDropdown({ ) : ( )} - + {isLoading ? fileUploading ? "Uploading..." diff --git a/frontend/src/app/settings/page.tsx b/frontend/src/app/settings/page.tsx index 8fb91bd2..689217bd 100644 --- a/frontend/src/app/settings/page.tsx +++ b/frontend/src/app/settings/page.tsx @@ -742,8 +742,7 @@ function KnowledgeSourcesPage() {