File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { type BreadcrumbItem as BreadcrumbItemType } from '@/types';
4
4
5
5
export function AppSidebarHeader ( { breadcrumbs = [ ] } : { breadcrumbs ?: BreadcrumbItemType [ ] } ) {
6
6
return (
7
- < header className = "border-sidebar-border/50 flex h-16 shrink-0 items-center gap-2 border-b px-4 transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-12" >
7
+ < header className = "border-sidebar-border/50 flex h-16 shrink-0 items-center gap-2 border-b px-6 transition-[width,height] ease-linear group-has-data-[collapsible=icon]/sidebar-wrapper:h-12 md:px-4 " >
8
8
< div className = "flex items-center gap-2" >
9
9
< SidebarTrigger className = "-ml-1" />
10
10
< Breadcrumbs breadcrumbs = { breadcrumbs } />
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ export default function SettingsLayout({ children }: { children: React.ReactNode
27
27
const currentPath = window . location . pathname ;
28
28
29
29
return (
30
- < div className = "px-4 py-6 " >
30
+ < div className = "p-6 md:px-12 " >
31
31
< Heading title = "Settings" description = "Manage your profile and account settings" />
32
32
33
- < div className = "flex flex-col space-y-8 md :flex-row md :space-y-0 md :space-x-12" >
34
- < aside className = "w-full md:w-1/3 lg:w-1/4 xl :w-1/5 " >
35
- < nav className = "flex flex-col space-y-1 space-x-0" >
33
+ < div className = "flex flex-col space-y-8 lg :flex-row lg :space-y-0 lg :space-x-12" >
34
+ < aside className = "w-full max-w-xl md :w-48 " >
35
+ < nav className = "flex flex-col space-y-1 space-x-0 md:-mx-3 " >
36
36
{ sidebarNavItems . map ( ( item ) => (
37
37
< Button
38
38
key = { item . url }
You can’t perform that action at this time.
0 commit comments