Skip to content

Commit e170d51

Browse files
Merge pull request #479 from BootNodeDev/fix/477-token-select-last-divider
fix(token-select): remove trailing divider from last network item
2 parents cf2752e + f16a652 commit e170d51

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

  • src/components/sharedComponents/ui/Menu

src/components/sharedComponents/ui/Menu/index.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ export const MenuItem: FC<MenuItemProps> = ({ children, css, ...restProps }) =>
2323
alignItems="center"
2424
backgroundColor="var(--item-background-color)"
2525
borderBottom="1px solid var(--item-border-color)"
26+
_last={{
27+
borderBottom: 'none',
28+
_hover: { borderBottom: 'none' },
29+
_active: { borderBottom: 'none' },
30+
}}
2631
color="var(--item-color)"
2732
columnGap={2}
2833
cursor="pointer"

0 commit comments

Comments
 (0)