Make ShareNav full width on mobile
Some checks are pending
Node.js CI / build (push) Waiting to run

- Remove fixed width, position, and border on mobile
- Use 100% width when onItemClick is provided (mobile context)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Mike Cao 2026-01-29 00:44:18 -08:00
parent b43e7fd3a7
commit 489c2712d1
2 changed files with 8 additions and 6 deletions

View file

@ -9,8 +9,8 @@ export function MobileMenuButton(props: DialogProps) {
<Menu />
</Icon>
</Button>
<Modal placement="left" offset="80px">
<Dialog variant="sheet" {...props} />
<Modal placement="left">
<Dialog variant="sheet" {...props} style={{ width: 'auto' }} />
</Modal>
</DialogTrigger>
);