Skip to content

Commit 37553a1

Browse files
committed
Fix overflow-x on AppContent
1 parent e2d93c8 commit 37553a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/layouts/app/app-sidebar-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default function AppSidebarLayout({ children, breadcrumbs = [] }: PropsWi
99
return (
1010
<AppShell variant="sidebar">
1111
<AppSidebar />
12-
<AppContent variant="sidebar">
12+
<AppContent variant="sidebar" className="overflow-x-hidden">
1313
<AppSidebarHeader breadcrumbs={breadcrumbs} />
1414
{children}
1515
</AppContent>

0 commit comments

Comments
 (0)