Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/layouts/GeneralLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function GeneralLayout({ children }: { children: React.ReactNode }) {
{isMobile ? (
<Sheet>
<SheetTrigger asChild>
<Button variant='outline' size='icon' className='fixed left-4 top-4 z-50 md:hidden'>
<Button variant='outline' size='icon' className='fixed left-2 top-2 z-50 md:hidden'>
<MenuIcon className='h-5 w-5' />
<span className='sr-only'>Toggle Menu</span>
</Button>
Expand All @@ -29,7 +29,7 @@ export function GeneralLayout({ children }: { children: React.ReactNode }) {
)}
<div className='flex flex-col'>
<Header />
<main className='flex flex-1 flex-col gap-4 px-4 py-3 lg:gap-6 sm:px-6 sm:py-4'>{children}</main>
<main className='flex flex-1 flex-col gap-2 px-2 py-2 lg:gap-6 sm:px-4 sm:py-3'>{children}</main>
</div>
</div>
);
Expand Down
Loading