diff --git a/frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx b/frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx
index b37b645f95a282c129ecf199a9cdc72b7e60c06a..e1f164a61526457580ea935573a77c64eae22fb7 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 b6db5d130376b84cb097ecfb25c248b982a2318e..5e37738c550be9f88057474495ae68400c6e163b 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 47f067f5c2ddfa9f689c32f80fead671d7a51fda..ec35537bf60e3cdf793d70263cff856522a269dd 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>