fix(ui): chip style (#36720)

This commit is contained in:
yyh 2026-05-27 16:30:43 +08:00 committed by GitHub
parent b034449a0c
commit 50face5760
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -104,12 +104,9 @@ function Chip<T extends ItemValue>({
<SelectItem
key={item.value}
value={item.value}
className="mx-1 gap-2 rounded-lg px-2 py-1.5 pl-3 select-none"
>
<SelectItemText className="mr-0 px-0">
<span title={item.name} className="block truncate system-sm-medium text-text-secondary">{item.name}</span>
</SelectItemText>
<SelectItemIndicator className="text-util-colors-blue-light-blue-light-600" />
<SelectItemText title={item.name}>{item.name}</SelectItemText>
<SelectItemIndicator />
</SelectItem>
))}
</SelectContent>