Skip to content

Commit d56ab85

Browse files
Revert padding changes in settings layout
This doesn't work nicely with the header layout
1 parent 26334cf commit d56ab85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/js/layouts/settings/layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ export default function SettingsLayout({ children }: { children: React.ReactNode
2727
const currentPath = window.location.pathname;
2828

2929
return (
30-
<div className="p-6 md:px-12">
30+
<div className="px-4 py-6">
3131
<Heading title="Settings" description="Manage your profile and account settings" />
3232

3333
<div className="flex flex-col space-y-8 lg:flex-row lg:space-y-0 lg:space-x-12">
3434
<aside className="w-full max-w-xl lg:w-48">
35-
<nav className="flex flex-col space-y-1 space-x-0 md:-mx-3">
35+
<nav className="flex flex-col space-y-1 space-x-0">
3636
{sidebarNavItems.map((item) => (
3737
<Button
3838
key={item.url}

0 commit comments

Comments
 (0)