Skip to content

Commit 4755420

Browse files
committed
Add touch handle size to more stories
1 parent a1a67f2 commit 4755420

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/stories/02-components/Positioned.Resizable.TopRightBottomLeft.stories.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Absolutely positioned space within it's parent with top / left / right / bottom
169169
)
170170
}
171171
return <ViewPort>
172-
<Positioned style={green} left={200} top={200} right={200} bottom={200} trackSize={true} resizable={[ ResizeType.All ]} onResizeStart={action('onResizeStart')} onResizeEnd={action('onResizeEnd')}>
172+
<Positioned style={green} left={200} top={200} right={200} bottom={200} touchHandleSize={20} trackSize={true} resizable={[ ResizeType.All ]} onResizeStart={action('onResizeStart')} onResizeEnd={action('onResizeEnd')}>
173173
<DragHandle />
174174
</Positioned>
175175
</ViewPort>

src/components/stories/02-components/Positioned.Resizable.WidthHeight.stories.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ Absolutely positioned space within it's parent with width and height specified.
169169
)
170170
}
171171
return <ViewPort>
172-
<Positioned style={green} left={200} top={200} width={400} height={300} trackSize={true} resizable={[ ResizeType.All ]} onResizeStart={action('onResizeStart')} onResizeEnd={action('onResizeEnd')}>
172+
<Positioned style={green} left={200} top={200} width={400} height={300} touchHandleSize={20} trackSize={true} resizable={[ ResizeType.All ]} onResizeStart={action('onResizeStart')} onResizeEnd={action('onResizeEnd')}>
173173
<DragHandle />
174174
</Positioned>
175175
</ViewPort>

0 commit comments

Comments
 (0)