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

update opacity and spacing of LLMItem, EmbedderItem, and VectorDBItem
This commit is contained in:
Sean Hatfield 2024-02-26 12:35:52 -08:00 committed by GitHub
parent c50311fe1a
commit ca2e0f8e6f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 10 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>