We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf02af0 commit 9435953Copy full SHA for 9435953
apps/dashboard/src/app/team/[team_slug]/[project_slug]/settings/layout.tsx
@@ -7,10 +7,14 @@ export default async function Layout(props: {
7
}) {
8
return (
9
<div className="flex grow flex-col">
10
- <h1 className="font-semibold text-3xl tracking-tight">
11
- Project Settings
12
- </h1>
13
- <div className="py-6">{props.children}</div>
+ <div className="border-b py-10">
+ <div className="container max-w-7xl">
+ <h1 className="font-semibold text-2xl tracking-tight lg:text-3xl">
+ Project Settings
14
+ </h1>
15
+ </div>
16
17
+ <div className="container max-w-7xl pt-6 pb-20">{props.children}</div>
18
</div>
19
);
20
}
0 commit comments