From aae18a94c521852f27a51c3636dd2d99010fd5f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Bosi?= <71827178+bosiraphael@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:27:50 +0100 Subject: [PATCH] Fix action menu padding (#8652) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Before: Capture d’écran 2024-11-21 à 16 10 29 After: Capture d’écran 2024-11-21 à 16 10 10 --- .../ui/layout/dropdown/components/DropdownMenuHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuHeader.tsx b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuHeader.tsx index 2bddf2ead..ff71e0f9a 100644 --- a/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuHeader.tsx +++ b/packages/twenty-front/src/modules/ui/layout/dropdown/components/DropdownMenuHeader.tsx @@ -15,7 +15,7 @@ const StyledHeader = styled.li` border-top-right-radius: ${({ theme }) => theme.border.radius.sm}; border-bottom: 1px solid ${({ theme }) => theme.border.color.light}; - padding: ${({ theme }) => theme.spacing(1)} 0; + padding: ${({ theme }) => theme.spacing(1)}; user-select: none; width: inherit;