Skip to content
Snippets Groups Projects
Unverified Commit ca2e0f8e authored by Sean Hatfield's avatar Sean Hatfield Committed by GitHub
Browse files

[STYLE] Fix styles of LLMItem, EmbedderItem, and VectorDBItem (#803)

update opacity and spacing of LLMItem, EmbedderItem, and VectorDBItem
parent c50311fe
No related branches found
No related tags found
No related merge requests found
...@@ -27,11 +27,9 @@ export default function EmbedderItem({ ...@@ -27,11 +27,9 @@ export default function EmbedderItem({
alt={`${name} logo`} alt={`${name} logo`}
className="w-10 h-10 rounded-md" 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-sm font-semibold">{name}</div>
<div className="mt-2 text-xs text-white tracking-wide"> <div className="mt-1 text-xs text-white/60">{description}</div>
{description}
</div>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -27,11 +27,9 @@ export default function LLMItem({ ...@@ -27,11 +27,9 @@ export default function LLMItem({
alt={`${name} logo`} alt={`${name} logo`}
className="w-10 h-10 rounded-md" 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-sm font-semibold">{name}</div>
<div className="mt-2 text-xs text-white tracking-wide"> <div className="mt-1 text-xs text-white/60">{description}</div>
{description}
</div>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -27,9 +27,9 @@ export default function VectorDBItem({ ...@@ -27,9 +27,9 @@ export default function VectorDBItem({
alt={`${name} logo`} alt={`${name} logo`}
className="w-10 h-10 rounded-md" 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-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> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment