From d1e3f87017b73d4a10abd9fd682ec68ce711954c Mon Sep 17 00:00:00 2001 From: Carl Date: Wed, 31 May 2023 14:32:07 +0800 Subject: [PATCH] fix: mobile account dropdown menu styles issues --- apps/storefront/src/components/B3DropDown.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/apps/storefront/src/components/B3DropDown.tsx b/apps/storefront/src/components/B3DropDown.tsx index 15d93699..f5a15d92 100644 --- a/apps/storefront/src/components/B3DropDown.tsx +++ b/apps/storefront/src/components/B3DropDown.tsx @@ -92,6 +92,12 @@ export default function B3DropDown({ id="customized-menu" keepMounted onClose={handleCloseMenuClick} + sx={{ + '& .MuiList-root.MuiList-padding.MuiMenu-list': { + pt: isMobile ? 0 : '8px', + pb: isMobile ? 0 : '8px', + }, + }} > {list.length && list.map((item: any) => {