From c26fde719658f1c433b367b87fc0ef97c93831d6 Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Fri, 14 Nov 2025 15:30:37 -0600 Subject: [PATCH] fix(ui2): overlap dropdown button --- static/app/components/dropdownMenu/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/app/components/dropdownMenu/index.tsx b/static/app/components/dropdownMenu/index.tsx index c6a999226a12f4..58218bbf0382ce 100644 --- a/static/app/components/dropdownMenu/index.tsx +++ b/static/app/components/dropdownMenu/index.tsx @@ -293,4 +293,7 @@ export {DropdownMenu}; const DropdownMenuWrap = styled('div')` display: contents; list-style-type: none; + > :first-child { + margin-left: -1px; + } `;