style: Minor update to Add Node Menu

So there's clear differentiation between the node title and desc
This commit is contained in:
blessedcoolant 2023-07-18 20:34:58 +12:00
parent d17450bbe6
commit e1b756658a

View File

@ -110,8 +110,11 @@ const SelectItem = forwardRef<HTMLDivElement, ItemProps>(
return (
<div ref={ref} {...others}>
<div>
<Text>{label}</Text>
<Text size="xs" color="base.600">
<Text fontWeight={600}>{label}</Text>
<Text
size="xs"
sx={{ color: 'base.600', _dark: { color: 'base.500' } }}
>
{description}
</Text>
</div>