Skip to content

Commit

Permalink
fix(www): Mobile nav button style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alifarooq9 committed Apr 8, 2024
1 parent 44e5e3e commit 52045b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/www/src/app/(app)/_components/mobile-nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ export function MobileNav() {
return (
<Sheet open={isOpen} onOpenChange={(o: boolean) => setIsOpen(o)}>
<SheetTrigger asChild>
<Button variant="outline" size="iconSm">
<Button
variant="outline"
size="iconSm"
className="flex sm:hidden"
>
<Icons.hamburger className="h-4 w-4" />
</Button>
</SheetTrigger>
Expand Down

0 comments on commit 52045b5

Please sign in to comment.