Fixes https://github.com/twentyhq/twenty/issues/5678
This commit is contained in:
@ -27,7 +27,7 @@ export const MenuItemNavigate = ({
|
|||||||
<StyledMenuItemLeftContent>
|
<StyledMenuItemLeftContent>
|
||||||
<MenuItemLeftContent LeftIcon={LeftIcon} text={text} />
|
<MenuItemLeftContent LeftIcon={LeftIcon} text={text} />
|
||||||
</StyledMenuItemLeftContent>
|
</StyledMenuItemLeftContent>
|
||||||
<IconChevronRight size={theme.icon.size.sm} />
|
<IconChevronRight size={theme.icon.size.md} />
|
||||||
</StyledMenuItemBase>
|
</StyledMenuItemBase>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -67,7 +67,7 @@ export const MenuItemSelect = ({
|
|||||||
hovered={hovered}
|
hovered={hovered}
|
||||||
>
|
>
|
||||||
<MenuItemLeftContent LeftIcon={LeftIcon} text={text} />
|
<MenuItemLeftContent LeftIcon={LeftIcon} text={text} />
|
||||||
{selected && <IconCheck size={theme.icon.size.sm} />}
|
{selected && <IconCheck size={theme.icon.size.md} />}
|
||||||
</StyledMenuItemSelect>
|
</StyledMenuItemSelect>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -47,7 +47,7 @@ export const MenuItemSelectAvatar = ({
|
|||||||
<OverflowingTextWithTooltip text={text} />
|
<OverflowingTextWithTooltip text={text} />
|
||||||
</StyledMenuItemLabel>
|
</StyledMenuItemLabel>
|
||||||
</StyledMenuItemLeftContent>
|
</StyledMenuItemLeftContent>
|
||||||
{selected && <IconCheck size={theme.icon.size.sm} />}
|
{selected && <IconCheck size={theme.icon.size.md} />}
|
||||||
</StyledMenuItemSelect>
|
</StyledMenuItemSelect>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@ -61,7 +61,7 @@ export const MenuItemSelectColor = ({
|
|||||||
{colorLabels[color]}
|
{colorLabels[color]}
|
||||||
</StyledMenuItemLabel>
|
</StyledMenuItemLabel>
|
||||||
</StyledMenuItemLeftContent>
|
</StyledMenuItemLeftContent>
|
||||||
{selected && <IconCheck size={theme.icon.size.sm} />}
|
{selected && <IconCheck size={theme.icon.size.md} />}
|
||||||
</StyledMenuItemSelect>
|
</StyledMenuItemSelect>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user