Skip to content

Commit

Permalink
fix: mobile account dropdown menu styles issues
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlLiu2023 committed Jun 6, 2023
1 parent 1648afc commit d1e3f87
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/storefront/src/components/B3DropDown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@ export default function B3DropDown<T>({
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) => {
Expand Down

0 comments on commit d1e3f87

Please sign in to comment.