Skip to content

Commit 7b663b3

Browse files
fix(ui): scrolling in builder
I am at loss as the to cause of this bug. The styles that I needed to change to fix it haven't been changed in a couple months. But these do seem to fix it. Closes #7910
1 parent 9c41599 commit 7b663b3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import { assert } from 'tsafe';
2323
const sx: SystemStyleObject = {
2424
pt: 3,
2525
w: 'full',
26-
h: 'full',
2726
'&[data-is-empty="true"]': {
2827
pt: 0,
2928
},

invokeai/frontend/web/src/features/nodes/components/sidePanel/viewMode/ViewModeLeftPanelContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const ViewModeLeftPanelContentInner = memo(() => {
3636
}
3737

3838
return (
39-
<Flex w="full" h="full" justifyContent="center">
39+
<Flex w="full" justifyContent="center">
4040
<RootContainerElementViewMode />
4141
</Flex>
4242
);

0 commit comments

Comments
 (0)