Skip to content

Commit 0699cb4

Browse files
committed
Align breadcrumb, deployment and org settings layouts to navbar.
1 parent 07ce677 commit 0699cb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

site/src/components/Breadcrumb/Breadcrumb.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const BreadcrumbList = forwardRef<
2828
<ol
2929
ref={ref}
3030
className={cn(
31-
"flex flex-wrap items-center text-sm pl-12 my-4 gap-1.5 break-words font-medium list-none sm:gap-2.5",
31+
"flex flex-wrap items-center text-sm pl-6 my-4 gap-1.5 break-words font-medium list-none sm:gap-2.5",
3232
className,
3333
)}
3434
{...props}

site/src/modules/management/DeploymentSettingsLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const DeploymentSettingsLayout: FC = () => {
3939
</BreadcrumbList>
4040
</Breadcrumb>
4141
<hr className="h-px border-none bg-border" />
42-
<div className="px-10 max-w-screen-2xl">
42+
<div className="px-6 max-w-screen-2xl">
4343
<div className="flex flex-row gap-12 py-10">
4444
<DeploymentSidebar />
4545
<main css={{ flexGrow: 1 }}>

site/src/modules/management/OrganizationSettingsLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ const OrganizationSettingsLayout: FC = () => {
109109
</BreadcrumbList>
110110
</Breadcrumb>
111111
<hr className="h-px border-none bg-border" />
112-
<div className="px-10 max-w-screen-2xl">
112+
<div className="px-6 max-w-screen-2xl">
113113
<div className="flex flex-row gap-12 py-10">
114114
<OrganizationSidebar />
115115
<main css={{ flexGrow: 1 }}>

0 commit comments

Comments
 (0)