From a8947fa15bde234e4ab9491a357cfa2ea997852f Mon Sep 17 00:00:00 2001 From: Gabito Esmiapodo <4015436+gabitoesmiapodo@users.noreply.github.com> Date: Tue, 21 Apr 2026 17:33:17 -0300 Subject: [PATCH 1/2] fix(menu): remove trailing divider from last menu item --- src/components/sharedComponents/ui/Menu/index.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/sharedComponents/ui/Menu/index.tsx b/src/components/sharedComponents/ui/Menu/index.tsx index 27137f0b..921fb410 100644 --- a/src/components/sharedComponents/ui/Menu/index.tsx +++ b/src/components/sharedComponents/ui/Menu/index.tsx @@ -23,6 +23,7 @@ export const MenuItem: FC = ({ children, css, ...restProps }) => alignItems="center" backgroundColor="var(--item-background-color)" borderBottom="1px solid var(--item-border-color)" + _last={{ borderBottom: 'none' }} color="var(--item-color)" columnGap={2} cursor="pointer" From f16a6520947780e7ab3d5aa77d4c243362130cbb Mon Sep 17 00:00:00 2001 From: Gabito Esmiapodo <4015436+gabitoesmiapodo@users.noreply.github.com> Date: Tue, 21 Apr 2026 18:01:56 -0300 Subject: [PATCH 2/2] fix(menu): suppress border on last item hover and active states --- src/components/sharedComponents/ui/Menu/index.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/sharedComponents/ui/Menu/index.tsx b/src/components/sharedComponents/ui/Menu/index.tsx index 921fb410..65ff3695 100644 --- a/src/components/sharedComponents/ui/Menu/index.tsx +++ b/src/components/sharedComponents/ui/Menu/index.tsx @@ -23,7 +23,11 @@ export const MenuItem: FC = ({ children, css, ...restProps }) => alignItems="center" backgroundColor="var(--item-background-color)" borderBottom="1px solid var(--item-border-color)" - _last={{ borderBottom: 'none' }} + _last={{ + borderBottom: 'none', + _hover: { borderBottom: 'none' }, + _active: { borderBottom: 'none' }, + }} color="var(--item-color)" columnGap={2} cursor="pointer"