diff --git a/frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx b/frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx index c4900cf64c7eb6a32b3ebcdd886e26ffeaa7a90b..0629fb9021f29aa14ac704c6a84a8d7179584490 100644 --- a/frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx +++ b/frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx @@ -189,7 +189,7 @@ export default function GeneralEmbeddingPreference() { <input type="text" placeholder="Search Embedding providers" - className="bg-zinc-600 z-20 pl-10 rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" + className="bg-zinc-600 z-20 pl-10 h-[38px] rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" onChange={(e) => setSearchQuery(e.target.value)} autoComplete="off" onKeyDown={(e) => { diff --git a/frontend/src/pages/GeneralSettings/LLMPreference/index.jsx b/frontend/src/pages/GeneralSettings/LLMPreference/index.jsx index 579c3903b7bcecc247db17f6e71bf9b2f9bf6c2c..ac4c1e3d1e4efc830f7d36cef6481a1d6648631d 100644 --- a/frontend/src/pages/GeneralSettings/LLMPreference/index.jsx +++ b/frontend/src/pages/GeneralSettings/LLMPreference/index.jsx @@ -239,7 +239,7 @@ export default function GeneralLLMPreference() { <input type="text" placeholder="Search LLM providers" - className="bg-zinc-600 z-20 pl-10 rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" + className="bg-zinc-600 z-20 pl-10 h-[38px] rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" onChange={(e) => setSearchQuery(e.target.value)} autoComplete="off" onKeyDown={(e) => { diff --git a/frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx b/frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx index 32de0709d3e8a0025811a83cfe004391d3a1e12b..e5eacaea72715cb310ee974b49425e9e189653fe 100644 --- a/frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx +++ b/frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx @@ -218,7 +218,7 @@ export default function GeneralVectorDatabase() { <input type="text" placeholder="Search vector databases" - className="bg-zinc-600 z-20 pl-10 rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" + className="bg-zinc-600 z-20 pl-10 h-[38px] rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" onChange={(e) => { e.preventDefault(); setSearchQuery(e.target.value); diff --git a/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx index 024fc2305852b604e86a47a09acb33b72eba2141..6fce2bf96da898ab681ba8eb22de30defd9dec37 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/EmbeddingPreference/index.jsx @@ -128,7 +128,7 @@ export default function EmbeddingPreference({ <input type="text" placeholder="Search Embedding providers" - className="bg-zinc-600 z-20 pl-10 rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" + className="bg-zinc-600 z-20 pl-10 h-[38px] rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" onChange={(e) => setSearchQuery(e.target.value)} autoComplete="off" onKeyDown={(e) => { diff --git a/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx index df94652a85048241ab6857c8a7136f80d90be5e5..5f278158695754288051c7d04c70eb4d938eebd9 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/LLMPreference/index.jsx @@ -211,7 +211,7 @@ export default function LLMPreference({ <input type="text" placeholder="Search LLM providers" - className="bg-zinc-600 z-20 pl-10 rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" + className="bg-zinc-600 z-20 pl-10 h-[38px] rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" onChange={(e) => setSearchQuery(e.target.value)} autoComplete="off" onKeyDown={(e) => { diff --git a/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx b/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx index 98034528d516e012fb196c79d7459abc24a62cd3..fb63cb8bcf04268949ad5bf04313e04f1fa81fc6 100644 --- a/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx +++ b/frontend/src/pages/OnboardingFlow/Steps/VectorDatabaseConnection/index.jsx @@ -166,7 +166,7 @@ export default function VectorDatabaseConnection({ <input type="text" placeholder="Search vector databases" - className="bg-zinc-600 z-20 pl-10 rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" + className="bg-zinc-600 z-20 pl-10 h-[38px] rounded-full w-full px-4 py-1 text-sm border-2 border-slate-300/40 outline-none focus:border-white text-white" onChange={(e) => setSearchQuery(e.target.value)} autoComplete="off" onKeyDown={(e) => {