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
This commit is contained in:
psychedelicious
2025-04-16 16:18:16 +10:00
parent 9c4159915a
commit 7b663b3432
2 changed files with 1 additions and 2 deletions

View File

@@ -23,7 +23,6 @@ import { assert } from 'tsafe';
const sx: SystemStyleObject = {
pt: 3,
w: 'full',
h: 'full',
'&[data-is-empty="true"]': {
pt: 0,
},

View File

@@ -36,7 +36,7 @@ const ViewModeLeftPanelContentInner = memo(() => {
}
return (
<Flex w="full" h="full" justifyContent="center">
<Flex w="full" justifyContent="center">
<RootContainerElementViewMode />
</Flex>
);