Skip to content

Commit 2610772

Browse files
feat(ui): tighten up launchpad content to fit better
1 parent 193de6a commit 2610772

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

invokeai/frontend/web/src/features/controlLayers/components/SimpleSession/LaunchpadContainer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import { memo } from 'react';
44

55
export const LaunchpadContainer = memo((props: PropsWithChildren<{ heading: string }>) => {
66
return (
7-
<Flex flexDir="column" h="full" w="full" alignItems="center" gap={2}>
8-
<Flex flexDir="column" w="full" gap={4} px={14} maxW={768} pt="20vh">
9-
<Heading mb={4}>{props.heading}</Heading>
10-
<Flex flexDir="column" gap={8}>
7+
<Flex flexDir="column" h="full" w="full" alignItems="center" justifyContent="center" gap={2}>
8+
<Flex flexDir="column" w="full" gap={4} px={14} maxW={768}>
9+
<Heading>{props.heading}</Heading>
10+
<Flex flexDir="column" gap={4}>
1111
{props.children}
1212
</Flex>
1313
</Flex>

0 commit comments

Comments
 (0)