Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions app/src/app/environments/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@ export default function Content() {
}

return (
<>
<div className="flex items-end justify-between gap-2 space-y-2">
<div className="max-w-[1400px] w-full">
<div className="flex items-end justify-between gap-2 mb-10">
<div>
<h2 className="text-2xl font-bold tracking-tight">Environments</h2>
<h2 className="text-2xl font-bold tracking-tight mb-2">
Environments
</h2>
<p className="text-muted-foreground">
Here&apos;s a list of available environments!
</p>
Expand All @@ -29,6 +31,6 @@ export default function Content() {
data={environments}
isLoading={isLoading}
/>
</>
</div>
);
}
2 changes: 1 addition & 1 deletion app/src/app/environments/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const metadata: Metadata = {
export default function EnvironmentsListPage() {
return (
<Inset pageTitle={metadata.title as string}>
<div className="flex h-full flex-1 flex-col space-y-8 p-8">
<div className="flex h-full flex-1 flex-col p-8 items-center">
<EnvironmentProvider>
<Content />
</EnvironmentProvider>
Expand Down
4 changes: 2 additions & 2 deletions app/src/components/AppSidebar/Inset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ export function Inset({

return (
<SidebarInset>
<header className="sticky top-0 z-50 flex h-16 shrink-0 items-center justify-center gap-2 px-8 border-b backdrop-blur transition-[width,height] ease-linear group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12">
<div className="flex items-center gap-2 max-w-[1400px] w-full">
<header className="sticky top-0 z-50 flex h-16 shrink-0 items-center gap-2 border-b backdrop-blur transition-[width,height] ease-linear group-has-[[data-collapsible=icon]]/sidebar-wrapper:h-12">
<div className="flex items-center gap-2 px-4 w-full">
<SidebarTrigger className="-ml-1" side="left" />
<Separator orientation="vertical" className="mr-2 h-4" />
{pageTitle == "Editor" && configurationId ? (
Expand Down