Skip to content
Merged
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
2 changes: 1 addition & 1 deletion apps/studio/src/modules/add-site/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type BlueprintsData = ReturnType< typeof useGetBlueprints >[ 'data' ];
// - Content centers with small breathing padding. When content is taller than
// the viewport it scrolls under the frosted overlays.
function ScreenContent( { children }: { children: React.ReactNode } ) {
return <div className="min-h-full flex flex-col justify-center py-8">{ children }</div>;
return <div className="min-h-full flex flex-col justify-top py-8">{ children }</div>;
}

interface NavigationContentProps {
Expand Down
Loading