Skip to content

Commit c3984b0

Browse files
committed
Add horizontal spacing for mobile devices
1 parent c51233b commit c3984b0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

frontend/components/left-panel/main-sidebar-wrapper.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ export function MainSidebarWrapper({
1616
<AppSidebar />
1717
<SidebarInset>
1818
<header className="flex h-14 shrink-0 items-center gap-2">
19-
<div className="flex flex-1 items-center gap-2 px-3">
19+
<div className="flex flex-1 items-center gap-2 px-5">
2020
<SidebarTrigger />
2121
</div>
22-
<div className="ml-auto px-3">{/* <NavActions /> */}</div>
2322
</header>
24-
<div>{children}</div>
23+
<div className="px-5">{children}</div>
2524
</SidebarInset>
2625
</SidebarProvider>
2726
);

0 commit comments

Comments
 (0)