Skip to content

Commit d215829

Browse files
feat(ui): increase spacing in form builder view mode
1 parent fad6c67 commit d215829

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

invokeai/frontend/web/src/features/nodes/components/sidePanel/builder/ContainerElement.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const ContainerElement = memo(({ id }: { id: string }) => {
5050
ContainerElement.displayName = 'ContainerElementComponent';
5151

5252
const containerViewModeSx: SystemStyleObject = {
53-
gap: 4,
53+
gap: 6,
5454
'&[data-self-layout="column"]': {
5555
flexDir: 'column',
5656
alignItems: 'stretch',
@@ -197,7 +197,7 @@ const rootViewModeSx: SystemStyleObject = {
197197
borderRadius: 'base',
198198
w: 'full',
199199
h: 'full',
200-
gap: 4,
200+
gap: 6,
201201
display: 'flex',
202202
flex: 1,
203203
maxW: '768px',
@@ -232,6 +232,7 @@ RootContainerElementViewMode.displayName = 'RootContainerElementViewMode';
232232

233233
const rootEditModeSx: SystemStyleObject = {
234234
...rootViewModeSx,
235+
gap: 4,
235236
'&[data-is-dragging-over="true"]': {
236237
opacity: 1,
237238
bg: 'base.850',

0 commit comments

Comments
 (0)