diff --git a/frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx b/frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx index b37b645f9..e1f164a61 100644 --- a/frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx +++ b/frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx @@ -27,11 +27,9 @@ export default function EmbedderItem({ alt={`${name} logo`} className="w-10 h-10 rounded-md" /> - <div className="flex flex-col gap-y-1"> + <div className="flex flex-col"> <div className="text-sm font-semibold">{name}</div> - <div className="mt-2 text-xs text-white tracking-wide"> - {description} - </div> + <div className="mt-1 text-xs text-white/60">{description}</div> </div> </div> </div> diff --git a/frontend/src/components/LLMSelection/LLMItem/index.jsx b/frontend/src/components/LLMSelection/LLMItem/index.jsx index b6db5d130..5e37738c5 100644 --- a/frontend/src/components/LLMSelection/LLMItem/index.jsx +++ b/frontend/src/components/LLMSelection/LLMItem/index.jsx @@ -27,11 +27,9 @@ export default function LLMItem({ alt={`${name} logo`} className="w-10 h-10 rounded-md" /> - <div className="flex flex-col gap-y-1"> + <div className="flex flex-col"> <div className="text-sm font-semibold">{name}</div> - <div className="mt-2 text-xs text-white tracking-wide"> - {description} - </div> + <div className="mt-1 text-xs text-white/60">{description}</div> </div> </div> </div> diff --git a/frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx b/frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx index 47f067f5c..ec35537bf 100644 --- a/frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx +++ b/frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx @@ -27,9 +27,9 @@ export default function VectorDBItem({ alt={`${name} logo`} className="w-10 h-10 rounded-md" /> - <div className="flex flex-col gap-y-1"> + <div className="flex flex-col"> <div className="text-sm font-semibold">{name}</div> - <div className="text-xs text-white tracking-wide">{description}</div> + <div className="mt-1 text-xs text-white/60">{description}</div> </div> </div> </div>