mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
feat: fix mismatched sizes for icons
This commit is contained in:
parent
c4e86539c6
commit
bb6ee0dc58
2 changed files with 6 additions and 2 deletions
|
|
@ -93,7 +93,11 @@ function DashGroupItemComponent({ group, instanceProjectId }: DashGroupItemProps
|
||||||
>
|
>
|
||||||
<div className="flex w-full items-center justify-between">
|
<div className="flex w-full items-center justify-between">
|
||||||
<div className="flex items-center gap-2 truncate pr-2">
|
<div className="flex items-center gap-2 truncate pr-2">
|
||||||
<CategoryIcon category={group.category ?? ''} className="icon-lg" aria-hidden="true" />
|
<CategoryIcon
|
||||||
|
category={group.category ?? ''}
|
||||||
|
className="icon-lg flex-shrink-0"
|
||||||
|
aria-hidden="true"
|
||||||
|
/>
|
||||||
|
|
||||||
<Label className="text-md cursor-pointer truncate font-semibold text-text-primary">
|
<Label className="text-md cursor-pointer truncate font-semibold text-text-primary">
|
||||||
{group.name}
|
{group.name}
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ export default function ListCard({
|
||||||
>
|
>
|
||||||
<div className="flex w-full justify-between gap-2">
|
<div className="flex w-full justify-between gap-2">
|
||||||
<div className="flex flex-row gap-2">
|
<div className="flex flex-row gap-2">
|
||||||
<CategoryIcon category={category} className="icon-md" aria-hidden="true" />
|
<CategoryIcon category={category} className="icon-md flex-shrink-0" aria-hidden="true" />
|
||||||
<Label
|
<Label
|
||||||
id={`card-title-${name}`}
|
id={`card-title-${name}`}
|
||||||
className="break-word select-none text-balance text-sm font-semibold text-text-primary"
|
className="break-word select-none text-balance text-sm font-semibold text-text-primary"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue