Skip to content

Commit

Permalink
feat(ui): increase spacing in form builder view mode
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Feb 28, 2025
1 parent fad6c67 commit d215829
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const ContainerElement = memo(({ id }: { id: string }) => {
ContainerElement.displayName = 'ContainerElementComponent';

const containerViewModeSx: SystemStyleObject = {
gap: 4,
gap: 6,
'&[data-self-layout="column"]': {
flexDir: 'column',
alignItems: 'stretch',
Expand Down Expand Up @@ -197,7 +197,7 @@ const rootViewModeSx: SystemStyleObject = {
borderRadius: 'base',
w: 'full',
h: 'full',
gap: 4,
gap: 6,
display: 'flex',
flex: 1,
maxW: '768px',
Expand Down Expand Up @@ -232,6 +232,7 @@ RootContainerElementViewMode.displayName = 'RootContainerElementViewMode';

const rootEditModeSx: SystemStyleObject = {
...rootViewModeSx,
gap: 4,
'&[data-is-dragging-over="true"]': {
opacity: 1,
bg: 'base.850',
Expand Down

0 comments on commit d215829

Please sign in to comment.